count how many rows contain nonblank in column A and blank in colu

V

Vic

How do I count how many rows contain nonblank in col A and blank in col B? It
has to be a combination of both. If you find a nonblank in col A then check
col B in this row, if it is blank then count this row in.
 
V

Vic

I wanted to clarify... Column A has a decision date and column B should have
that decision. If I have a date without a decision then I want to contact
this person to get his/her decision.

Thank you.
 
L

Luke M

=SUMPRODUCT((ISBLANK(A2:A100))*(ISBLANK(B2:B100)))
Adjust range sizes as desired.

Note that with SUMPRODUCT, range sizes must be equal. You can not callout
the entire column (i.e., A:A) unless you're using XL 2007.
 
V

Vic

This formula counts combination of blanks in both columns. My task is to
locate NON-BLANK in A and then check B. If B is blank then I want to count
this row in.
 
V

Vic

Thank you.

Luke M said:
Oops! Tweaked formula:
=SUMPRODUCT((NOT(ISBLANK(A2:A100)))*(ISBLANK(B2:B100)))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 

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