Countblank formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I count the number of blank cells in one column using the criteria
that cells another column is not blank?
 
Try something like this:

SUMPRODUCT(--(A1:A10<>""),--(B1:B10=""))
 
Thanks Rodrigo. But I'm not sure this formula will work since I don't need
to add values. The data that I need to evaluate is text. I'm trying to use
a spreadsheet to track tasks for individuals. So I have task completion
dates in one column and individuals' names in another column and I want to
count the total number of uncompleted tasks for each individual. Can this be
done?
 
You're not sure makes it sound like you did not try it before replying. Does
it, or does it not work?
 
If I understood...
Column A = Name
Column B = Date - Begin
Column C = Date - End

D = SUMPRODUCT( --(A1:A10="Rodrigo"), --(B1:B10<>""), --(C1:C10=""))
 

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

SUMIF with criteria "<>" & "=" 4
Excel Sumproduct 0
count nonblank cells 3
COUNTBLANK function 6
Help needed 0
Countblank 1
Count the number of AutoFiltered records 6
Counting NON-Blank fields 2

Back
Top