If Statement on Expiration Dates
My criteria are the following
- If the Expiration Date Column cell is blank or greater than today+31 days = “Yes”
- If the Expiration Date Column cell is within 30 days = “Hold”
- IF the Expiration Date Column cell = today or greater than the date in the cell = “No”
I tried using ISDate, Index Match, Date Only and it's not working.
Below is the formula
=IF(ISDATE([Expiration Date]11), "Yes", IF([Expiration Date]11 > TODAY(+60), "Hold", IF([Expiration Date]11 <= TODAY(), "No")))
Thank you for the help.
J
Answers
-
Try this...
=IF(TODAY() >= [Expiration Date]@row, "No", IF([Expiration Date]@row <= TODAY(30), "Hold", "Yes"))
-
Hi Paul,
Thank you for your response. I tried it but now any date entered it equals to No.
-
Even if you enter a date in the future?
Double check that your column as formatted as a date type column.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 438 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 67 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!