Formula Question - CountIf?

  • Thread starter Thread starter RS
  • Start date Start date
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!!!
 
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
 
Back
Top