I want to create a calculated column that returns YES if the four columns beside it are not null and NO if they are all null. An example would be this:
Calculated Column| Column 1 | Column 2 | Column 3 | Column 4 |
YES | 10 | 5 | 3 | 2 |
YES | | 3 | | |
NO | | | | |
I’m not sure how to compare values in the same row though. If I check for something like “Column1 = ” ” it check the whole column, rather than just the individual row.
I think you have the correct idea. In your calculated column, you can check the values of columns 1 – 4. The check will be performed for each row.
So assuming you had fields 1 through 4 that were the formulas for columns 1 through 4, your calculated column would look like this: