This is a snippet from a nested if statement: IF IsNull([5]) AND IsNull([6]) AND [1] = [2] = [3] = [4] then 1 else 2 endif results in a 2 when I'd expect a 1.
If I can get this to work, the full statement should, which just accounts for nulls in up to 5 columns.
Perhaps there's an easier way. I want to know if all the cells that aren't Null contain the same data or value (in the example, it would be columns 1-4.)
Not all rows have data in all columns, but the Nulls are always to the right.

