Trying to count multiple columns IFBLANK or Not

JWYCSean

New Member
Joined
Aug 19, 2022
Messages
8
Office Version
  1. 365
Platform
  1. Windows
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”)))))

1660934094900.png
 
No, currently the only formulas are in F4 and F5 as I was just trying to test it out before applying it to the rest of the sheet. It is just the x in A4, and the corrected formula in F4 and F5
 
Upvote 0

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
No, there is just a text "x" in A4 and the correct formula in F4 and F5.
 
Upvote 0
In that case try
Excel Formula:
=IF(COUNTIFS(A5:E5,""),"","Done")
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,617
Messages
6,120,541
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top