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.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 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!