Countblank

  • Thread starter Thread starter AdamJ28
  • Start date Start date
A

AdamJ28

Using the function 'COUNTBLANK' on excel it doesnt want to work using i
on more than 1 sheet. I want to count singular cells on quite a fe
different worksheets, but its not happening using 'COUNTBLANK' Or wha
is it you put between each cell, i would think a , but it isnt working
can anyone help
 
You can use this workaround

=SUMPRODUCT(COUNTBLANK(INDIRECT("'"&A3:A14&"'!A2")))

where A3:A14 holds the sheet names you want to count like

Jan
Feb
Mar
etc

as an example
 
I think I'd just use a few =countblank() functions:

=countblank(a1:a10)+countblank(sheet2!a1:a10)
and so forth.

Or for single cells:

=SUM(B9="",Sheet2!A1="",Sheet3!A9="")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

counting blanks in a non-consecutive range 3
Countbalnk Formula 4
Count blank cells and cells with text 3
multiple countblank 3
count blank 3
COUNTBLANK function 6
sum of blank and non blank 12
Static Count blank 13

Back
Top