If range is not blank, blank, or partially blank

JoshLyman

New Member
Joined
Jan 11, 2023
Messages
35
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Excel wizards.. I would very much like a formula in B1 which reflects whether B4:E8 is either not blank, partially blank, or entirely blank. It should ideally say the following:

If not blank (i.e., all cells have been populated) = Complete
If partially blank (i.e., some cells have been populated, some haven't) = In progress
If entirely blank (i.e., no cells have been populated) = No progress

NEW Self-Assessment Report.xlsx
ABCDE
1Current progress
2
3CriteriaHow do we do this?What do we do well?How can we improve?Self-assessed grade
41.1
51.2
61.3
71.4
81.5
Sheet1


I've tried doing it with SUMPRODUCT, but stacking the criteria has proven more than I can handle. Thank you in advance.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
I feel like this may be a bit too complicated, but it works:

Book1
ABCDE
1Current progressNo progress
2
3CriteriaHow do we do this?What do we do well?How can we improve?Self-assessed grade
41.1
51.2
61.3
71.4
81.5
Sheet2
Cell Formulas
RangeFormula
B1B1=SWITCH(COUNTA(B4:E8),0,"No progress",ROWS(TOCOL(B4:E8)),"Complete","In progress")


If the range is static, then obviously change the `ROWS(TOCOL())` part into a static number.
 
Upvote 1
Solution

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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