in my Excel document I have 51 fields that I need to check that these fields were not empty/ I am using Excel 2003 and there is maximum 30 argument of function OR:
=IF(OR(ISBLANK(A3)=TRUE;ISBLANK(B3)=TRUE...);"Some empty field";"")
Here is my exemple, but I need to check more fields, how can I do this?
You can do this with a simple
COUNTA, ie for 51 cells fromA3toAY3footnote:
=ISBLANK(A3)is the same as=ISBLANK(A3)=TRUEbut is simpler