Hi team - I have a large span of columns that I need to look across to determine if any of the row columns are blank.
Can you select a range, like [Column1]:[Column100], and determine if any blanks exists without having to do a ISBLANK for every column @row?
I've used this in the past for a check box column formula but I have way too many columns to do ISBLANK for each:
=IF(OR(ISBLANK([Column1]@row), ISBLANK(Column2]@row), ISBLANK([Column3]@row), ISBLANK([Column4]@row)), true, false)
Thanks in advance,
Jeff