Formula Question - CountIf?

R

RS

I would like to do the following, but am at an impasse. I think this should
be simple, but it isn't working. Any help is very much appreciated!

I would like to find the following three categories from a column of data
(my data is in column B):

<=30 days
30 days but <=60 days
60 days

What formula would I use to find this data?

Thank you!!!
 
F

Fred Smith

Given that your Subject line said Countif, and assuming column B had the
number of days in it, you would use:
=countif(B:B,"<=30")
=countif(B:B,"<=60")-countif(B:B,"<=30")
=countif(B:B,">60")

Regards,
Fred
 

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