Stuck on IF formula
Hello, please help I know this fix is simple. I need training status column to either reflect Complete, Past Due or Outstanding. I left a copy of a formula I started messing with and and am just stuck.
If Completion Date is blank then training status should be Outstanding
If Completion Date is greater than general training due date, then training status should be Past Due
If Completion Date is less than general training due date, then training status should be Complete.
Answers
-
Try below,
IF(ISBLANK([Completion Date]@row), "OUTSTANDING", IF(ISBLANK([General Training Due Date]@row),"SPECIFY TRAINING DUE DATE FIRST", IF([Completion Date@row] > [General Training Due Date]@row, "PAST DUE", "COMPLETED") ) )
-
You were getting there! Try this:
=IF([Completion Date]@row = "", "", IF([Completion Date]@row > [General Training Due Date]@row, "Past Due", IF([Completion Date]@row <= [General Training Due Date]@row, "Complete")))
-
thank you it worked!!!!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 351 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 443 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!