COUNTA with IF trouble...

T

TEAM

I am working with the following formula...

{=COUNTA(IF(C16:C500=K3,H16:H500))}


My goal is to look at that data in column C to locate all row
corresponding to a specific data entry (K3). Then, from that narrowe
list of rows, I want to count the number of cells in column H that ar
nonblank.


Any ideas
 
D

Domenic

Try...

=SUM(IF((C16:C500=K3)*(H16:H500<>""),1))

....confirmed with CONTROL+SHIFT+ENTER, or...

=SUMPRODUCT(--(C16:C500=K3),--(H16:H500<>""))

....confirmed with just ENTER.

Hope this helps!
 

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