J
JC
I have columns data
ie:
ad ae ag ah
12 23 34.00 0
result should be
"" "" "" ""
12 blank blank blank
result should be
"" 1 1 1
blank 23 blank blank
result should be
1 " " 1 1
25 blank
blank 12
blank blank blank blank
result should be
" " "" "" ""
i have formula to validate each column and it is supposed to return a 1 if
any of the cells are blank???
=IF(AND(ISBLANK(Data!$AD4),ISBLANK(Data!$AE4),ISBLANK(Data!$AG4),ISBLANK(Data!$AH4)),1,"")
but it doesn't work for all cases
ie:
ad ae ag ah
12 23 34.00 0
result should be
"" "" "" ""
12 blank blank blank
result should be
"" 1 1 1
blank 23 blank blank
result should be
1 " " 1 1
25 blank
blank 12
blank blank blank blank
result should be
" " "" "" ""
i have formula to validate each column and it is supposed to return a 1 if
any of the cells are blank???
=IF(AND(ISBLANK(Data!$AD4),ISBLANK(Data!$AE4),ISBLANK(Data!$AG4),ISBLANK(Data!$AH4)),1,"")
but it doesn't work for all cases