How can I count conditional blank cells?

G

Guest

I want to count blank cells in one column where a certain value exists in
another column. DCOUNT and COUNTIF don't work for this purpose. For
example, I want to count the blank cells in column B where the Cells in
Column A equal "John":

A B
1 John 5
2 John
3 John 7
4 Mike 1
 
G

Guest

Try something like this:

C1: =SUMPRODUCT((A1:A100="John")*ISBLANK(B1:B100))

Change range references to suit your situation.

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 

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

Top