I am attempting to count multiple columns that will be filled with different information/values/text. If all of the Columns are not blank, I want the column to report out as "Done" otherwise, the column can stay blank or report out as "Not Done". Every IF or BLANK formula I try seems not to work and since it's in a table, I can't use a Spill range either. Here is the formulas I have tried. Any insight into how to have this report the right information or any other suggestion are welcome.
'=IF(NOT(ISBLANK(A3)),A3,IF(NOT(ISBLANK(B3)),B3,IF(NOT(ISBLANK(C3)),C3,IF(NOT(ISBLANK(D3)),D3,IF(NOT(ISBLANK(E3)),E3,"Done"))))
'=IF(A5<>””,A5,IF(B5<>””,B5,IF(C5<>””,C5,IF(D5<>””,D5,IF(E5<>"",E5,”Done”)))))
'=IF(NOT(ISBLANK(A3)),A3,IF(NOT(ISBLANK(B3)),B3,IF(NOT(ISBLANK(C3)),C3,IF(NOT(ISBLANK(D3)),D3,IF(NOT(ISBLANK(E3)),E3,"Done"))))
'=IF(A5<>””,A5,IF(B5<>””,B5,IF(C5<>””,C5,IF(D5<>””,D5,IF(E5<>"",E5,”Done”)))))