Formula Help
I have the following setup and the formula below is for the GLH column. At times, I don't have the Actual End date yet and the GLH "may not be exceeded" yet so I would prefer to have the GLH to be something like TBD, when the Actual End date is not populated. What do I need to change in the formula?
Formula:
=IF(AND([GO Live Date]@row > [Actual End]@row, [Actual End]@row <> ""), "On-Time", "Exceeded")
Best Answer
-
Give this a try:
=IF([Actual End]@row <> "", IF([GO Live Date]@row> [Actual End]@row, "On-Time", "Exceeded"), "TBD")
Answers
-
Have you try using the isblank function? try this =IF(ISBLANK([Actual End]@row), "TBD", IF(AND([GO Live Date]@row > [Actual End]@row, [Actual End]@row <> ""), "On-Time", "Exceeded"))
-
Give this a try:
=IF([Actual End]@row <> "", IF([GO Live Date]@row> [Actual End]@row, "On-Time", "Exceeded"), "TBD")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.5K Get Help
- 434 Global Discussions
- 152 Industry Talk
- 494 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 506 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!