Expired Date code
So i recently create a new Cell called " Expired Date" what I'm trying to do in this cell is to show when a date has been expired , based on the Promised Date, but i found that if i left mi code just like this, But
=IF([Promised Date]4 > TODAY(0), "Expired date", "-" i don't have a restriction.
And i try this code, but i cant figure out how make it run.
=IF([Promised Date]4 > TODAY(0), "Expired date", "-", IF(NOT(ISBLANK([Completion Date]4)), "Completed", "-"))
Does any one has any suggestions?
Hope everyone has a great day
Comments
-
Try this:
=IF([Promised Date]@row< TODAY(), "Expired Date", IF(NOT(ISBLANK([Completion Date]@row)), "Completed", "-"))
I think you want Less than today() to highlight dates that are in the past. Also, you need to make sure that you close all opened statements like NOT and ISBLANK before you move on in the IF statements. This revision closes those up for you. I also added @row instead of the row number so you can paste it wherever you want.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!