Return different value based on date
Hi, I'm trying to write a formula to return different values based on the reference date ([Next Calibration/PM Date]@row) compared to today's date. I want the equation to:
- If the cell is blank, return as "Pending",
- If the date is < = today, return as "Overdue",
- If the date is > today, return as "Current",
- If the date is between today and today(30), return as "Upcoming"
This is the equation that I have so far:
=IF([Next Calibration/PM Date]@row = "", "Pending", IF([Next Calibration/PM Date]@row <= TODAY(30), "Overdue", IF([Next Calibration/PM Date]@row > TODAY(), "Current", IF((TODAY(29) > [Next Calibration/PM Date]<TODAY(), "Upcoming")))))
But I can't seem to get the "Upcoming" condition right.
Thank you!!
Answers
-
Hey @vaue try this
=IF([Next Calibration/PM Date]@row = "", "Pending", IF([Next Calibration/PM Date]@row <= TODAY(), "Overdue", IF([Next Calibration/PM Date]@row <= TODAY(30), "Upcoming", "Current")))
Mostly you just needed to switch the current condition and the upcoming condition because the current condition you had would have applied always before the upcoming condition
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!