How do I automatically un-flag?
If planned start is in the past and start date is blank. Late start populates a red flag a red flag.
This is the formula: =IF(AND(ISBLANK([Start Date]@row), [Planned Start Date]@row < TODAY()), 1, 0)
When a cell says "completed" in the status column, how do I get it to unflag?
Best Answers
-
Hi @KBSheetBI,
Try this formula.
=IF([Status]@row = "Completed",0,IF(AND(ISBLANK([Start Date]@row), [Planned Start Date]@row < TODAY()), 1, 0))
Hope this helps!
John
-
Hi @KBSheetBI,
You are welcome. For the rejected you can use the below, there may be a better way but this is what I would use.
=IF([Status]@row = "Rejected",0,IF([Status]@row = "Completed",0,IF(AND(ISBLANK([Start Date]@row), [Planned Start Date]@row < TODAY()), 1, 0)))
John
Answers
-
Hi @KBSheetBI,
Try this formula.
=IF([Status]@row = "Completed",0,IF(AND(ISBLANK([Start Date]@row), [Planned Start Date]@row < TODAY()), 1, 0))
Hope this helps!
John
-
Thank you, Sir!!
-
@John_Foster This works great! What do I need to add to the formula when status is rejected? would want it to remove the flag just like it does when completed
-
Hi @KBSheetBI,
You are welcome. For the rejected you can use the below, there may be a better way but this is what I would use.
=IF([Status]@row = "Rejected",0,IF([Status]@row = "Completed",0,IF(AND(ISBLANK([Start Date]@row), [Planned Start Date]@row < TODAY()), 1, 0)))
John
-
@John_Foster it works. You are the man!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!