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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 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!