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
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!