Count NonBlank Rows with Criteria in another column

C

carmen

I need to count the number of nonblank rows that have a certain
criteria in a different column. I assume that some version of the
SUMPRODUCT formula will do what I need to do, but I can't figure it
out for the life of me. Any ideas?

Say I have an array of data entered into cells K3:N35. I need to
count the number of rows that are nonblank in any of the cells in that
array that also have an "A" in column O. I think it should be
something like:

=SUMPRODUCT(--('Data Sheet'!K3:N35<>""),--('Data Sheet'!O3:O35="A"))

Your assistance is most appreciated.

Carmen
 
T

T. Valko

I'm assuming you want to count a row if there is at least one entry in that
row.

=SUMPRODUCT(--(MMULT(--(K3:N35<>""),{1;1;1;1})>0),--(O3:O35="A"))
 
C

carmen

I'm assuming you want to count a row if there is at least one entry in that
row.

=SUMPRODUCT(--(MMULT(--(K3:N35<>""),{1;1;1;1})>0),--(O3:O35="A"))

--
Biff
Microsoft Excel MVP










- Show quoted text -

Biff,

This does it! Thanks so much. You totally saved my project. 8-D

Carmen
 
T

T. Valko

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


I'm assuming you want to count a row if there is at least one entry in
that
row.

=SUMPRODUCT(--(MMULT(--(K3:N35<>""),{1;1;1;1})>0),--(O3:O35="A"))

--
Biff
Microsoft Excel MVP










- Show quoted text -

Biff,

This does it! Thanks so much. You totally saved my project. 8-D

Carmen
 
T

T. Valko

Thanks!

--
Biff
Microsoft Excel MVP


smartin said:
Nice solution Biff! And thanks for writing about MMULT... this was unknown
to me, and I suspect many others as well.
 

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