I have the following formula in cell A1 to check if cells C126:130 are all blank:
=IF((ISBLANK(C126)*AND(ISBLANK(C127)*AND(ISBLANK(C128)*AND(ISBLANK(C129)*AND(ISBLANK(C130)))))),"X","Y")
The formula works correctly but is there a way to reference all 5 cells, i.e. (ISBLANK(C126:130)) rather than nesting the AND statements? I tried using the (C126:130) in the AND argument but then it was only working correctly when C126 was not blank.
Thanks in advance,
Mark
=IF((ISBLANK(C126)*AND(ISBLANK(C127)*AND(ISBLANK(C128)*AND(ISBLANK(C129)*AND(ISBLANK(C130)))))),"X","Y")
The formula works correctly but is there a way to reference all 5 cells, i.e. (ISBLANK(C126:130)) rather than nesting the AND statements? I tried using the (C126:130) in the AND argument but then it was only working correctly when C126 was not blank.
Thanks in advance,
Mark