• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula for seggregation of dates

saneesh

New Member
Hi,

I have one column with 1000 dates and i have on particular date with me...according to this date i want to divide this date into 3.that is <45,45-90 days,>90days


Could you please arrange me a formula for this..


Regards

Sannesh
 
There are many ways to do this. Something like this will work:


=IF(A1<today()-45,IF(A1<Today()-90,"Older Than 90","45-90"),"45 or Newer")


Change the text strings to match the output you'd like.
 
Back
Top