countifs/or

C

Caroline

I have the following formula in a spreadsheet:
=COUNTIFS(A:A,"<>",C:C,"",D:D,"Received")
I now want to also count rows in column D that have "n/a" (I want to count
both "n/a" and "received".
How do I modify the function to include those?
Thank you,
Caroline
 
B

baxter2.0

you should be able to stack them try:
=COUNTIFS(A:A,"<>",C:C,"",D:D,"Received")+COUNTIFS(A:A,"<>",C:C,"",D:D,"n/a")
 

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


Top