• 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.

Show Dates Near Expiry

JAeEM

New Member
Hi wonderful Excel Gods!

My question today is how do I write a formula that will show me dates in a column that are within 90 days of today's date.

This is what I got so far but I'm missing something

NOW()<=90

Please help thank you all so much for your continued support.
 
You are missing a reference to your column of dates!
= ( date - TODAY() <= 90 )
returns TRUE for dates within 90days and FALSE otherwise.

p.s. NOW() would also work.
 
Back
Top