How to take "canceled" out of the equation
Hello! I am trying to make it so an exclamation point appears if something is past due and not complete. Here is my current formula:
=IF(AND(NOT(Status7 = "Complete"), TODAY() > [End Date]7), "High")
This is working great but it will have an exclamation point appear if something is past due and canceled. I would like for it to be blank if canceled as they won't complete that task.
Thank you for your help!
Comments
-
Try this:
=IF(status@row = "Cancelled", " ", IF(AND(NOT(status@row = "Complete"), TODAY() > [End Date]@row), "High"))
-
Thank you so much! That worked great!
I'm sorry, I had a second question:
For the same formula, how would you add in so that a symbol wouldn't appear if the date is blank?
Thank you again!
-
You are a hero! Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!