Unflag after marked completed
Hi,
I am new to formulas. What can I use for the following:
I currently have this formula to flag an over due task:
=IF(AND([% Complete]@row < 1, [End Date]@row < TODAY()), 1)
The formula on top works fine, but when the user clicks on the completed checkbox the red flag still appears. I want the red flag to disappear when the user clicks on the completed check box.
Any assistance would be appreciated! ☺️
Best Answer
-
@David G O, in that case add a condition to your AND function:
=IF(AND([% Complete]@row < 1, [End Date]@row < TODAY(), Complete@row = 0), 1,0)
Darren Mullen, join the Smartsheet Guru Elite
Get my 7 Smartsheet tips here
Author of: Smartsheet Architecture Solutions
Answers
-
@David G is [% Complete] changing to 100% when the check box is checked? If so, you can add an "else value" to your if statement:
=IF(AND([% Complete]@row < 1, [End Date]@row < TODAY()), 1,0)
So if the AND function is false, then it will return the value "0" (unflagged)
Darren Mullen, join the Smartsheet Guru Elite
Get my 7 Smartsheet tips here
Author of: Smartsheet Architecture Solutions
-
HI @Darren Mullen thanks for this info. What I want to happen is when I uncheck the box under my complete column I want the flag under the overdue column to disappear. .
-
@David G O, in that case add a condition to your AND function:
=IF(AND([% Complete]@row < 1, [End Date]@row < TODAY(), Complete@row = 0), 1,0)
Darren Mullen, join the Smartsheet Guru Elite
Get my 7 Smartsheet tips here
Author of: Smartsheet Architecture Solutions
-
thank you! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 412 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!