Status formula based on date
Looking for assistance, and seems like the multiple variations I have tried are not producing the results. Here is what I am seeking accomplish:
[CRM Status] Cell for Results
If [74. Discharge date]@row is blank return "No Discharge"
If [74. Discharge date]@row is TODAY or equal to / less than 3 days from TODAY return “OK”
If [74. Discharge date]@row is more than 3 days from TODAY return “NEED”
IF[CRM Complete]@ row is checked return “OK”
Thank you in advance for your assistance!!!
Answers
-
Give this a try. You can place it in your CRM Status column as a column-level formula. NOTE: You may need to modify the column names below to match your worksheet columns
=IF(ISBLANK([Discharge Date]@row), "No Discharge", IF(OR([Discharge Date]@row <= TODAY(-3), [CRM Complete]@row = 1), "OK", "NEED"))
-
Thank you for the quick response! So close to what I needing...
After further analysis and trying, it appears that it may be more like this:
=IF([74. Discharge Date]@row < TODAY(-3), “Need”
IF(OR([74. Discharge Date]@row = >TODAY(), [74. Discharge Date]@row < = TODAY(+3), [CRM Complete]@row = 1), "OK",
“”)
If the date is more than 3 days from discharge = need
If in between discharge and 3 days, or CRM Complete = OK
IF none of these = blank
Additional help would be awesome--soooo, close! 😀
-
Hi @Brett L
Were you able to get the formula you need?
One thing to note is that in the text above I can see curved quotes like this: “”
Smartsheet will need the formula to have quotes that are straight up and down, like so: ""
This means you'd need to adjust the formula to have the right type of quotes (by typing it directly into the cell). Try this:
=IF([74. Discharge Date]@row < TODAY(-3), "Need", IF(OR([74. Discharge Date]@row = >TODAY(), [74. Discharge Date]@row < = TODAY(+3), [CRM Complete]@row = 1), "OK", ""))
Let me know if changing the quotes worked for you!
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!