Using a formula to determine whether multiple cells are blank or not blank

Milos

Board Regular
Joined
Aug 28, 2016
Messages
121
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I am just trying input a formula to know if a large spread sheet with a certain task has been completed or not.

I have 100 cells that all need to be input with a value (e.g. cell is not blank) for it to be deemed to have been completed.
The cells are B4:B14,D4:D14,F4:F14,H4:H14,J4:J14,L4:L14,N4:N14,P4:P14,R4:R14,T4:T14

How can I create the formula so that one cell (let's say cell A3) will count all of the cells and if any one of the cells is blank then it will return a value of Not completed? However when all cells are completed is will return a value of Completed.

I have been trying the IF and COUNTA and ISBLANK to no avail. Although I think it is my incorrect formatting that is the biggest issue.

Thanks,
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Maybe something like this?
=IF(COUNTA(B4:B14,D4:D14,F4:F14,H4:H14,J4:J14,L4:L14,N4:N14,P4:P14,R4:R14,T4:T14)<>110,"Not Completer","Complete")
 
Upvote 0
Maybe something like this?
=IF(COUNTA(B4:B14,D4:D14,F4:F14,H4:H14,J4:J14,L4:L14,N4:N14,P4:P14,R4:R14,T4:T14)<>110,"Not Completer","Complete")

On the same track here, just couldn't figure out how to compact the range references. :(
 
Upvote 0
I also meant to ask the OP - what is in the cells/columns between those ranges? C4:C14 etc) That might go some way to answering your "question", dreid ;)
 
Upvote 0
Happy to help Milos.

So, what IS in those ranges between the ranges of interest?
 
Upvote 0
In between the ranges of interest is the numbers of the questions that need to be answered so that the person inputting the information can keep track of their progress. It is a terrible layout of a spreadsheet and I may fix it soon.
 
Upvote 0
Also, control+shift+enter, not just enter:

=IF(SUM(IF(MOD(COLUMN(B4:T14)-COLUMN(B4),2)=0,IF(LEN(B4:T14)=0,1))),"not complete","complete")
 
Upvote 0
I have 100 cells that all need to be input with a value (e.g. cell is not blank) for it to be deemed to have been completed.
The cells are B4:B14,D4:D14,F4:F14,H4:H14,J4:J14,L4:L14,N4:N14,P4:P14,R4:R14,T4:T14
Note that those ranges equal 110 cells, not 100 :)

Seeing as you will always have the same amount on numbers for the questions, you could maybe simplify that to this...
=IF(COUNTA(B4:T14)<>220,"Not Completer","Complete")

Note that if you really do only have 100 cells, then that would be <>200
 
Upvote 0

Forum statistics

Threads
1,223,895
Messages
6,175,257
Members
452,625
Latest member
saadat28

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