Set up a count and countif?

P

pdvinuk

I've set up a Countif formula for a column that has either High, Medium and
Low
=COUNTIF(D8:D250,"Low") etc giving me the data of each.

Corresponding to this column, I have another which will have 'date issued'.
The actual date doesn't matter to me, I just want to set up a formula that
reflects that either the High, Medium or Low has been issued and I want this
number per catagory?

I've tried the 'count' function to no avail?

Can I use count and countif in the same formula?

Many thanks
 
J

joel

Use sumproduct to test for two conditions. I'' assume that wehn no data is
issued the cell is blank

=Sumproduct(--(D8:D250="Low"),--(E8:E250<>""))

Where column E contains the issue dates.
 
P

pdvinuk

Thank you

Worked perfectly

joel said:
Use sumproduct to test for two conditions. I'' assume that wehn no data is
issued the cell is blank

=Sumproduct(--(D8:D250="Low"),--(E8:E250<>""))

Where column E contains the issue dates.
 

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