If and Question for At Risk Flags
How do I make this work (combine into a single statement)?
=IF(ISBLANK([Days Overdue]@row), 0, 1)
AND
=IF(AND([Days Overdue]@row > -5, [% Complete]@row < 1), 1, 0)
New to smartsheets! Thank you.
Answers
-
Try this
=IF(OR(Days Overdue]@row <> "", AND([Days Overdue]@row > -5, [% Complete]@row < 1)), 1, 0)
Gia Thinh Technology - Smartsheet Solution Partner.
-
When I just use this:
=IF(AND([Days Overdue]@row > -5, [% Complete]@row < 1), 1, 0)
Everything looks good. I want to clear the flag if days overdue is "".
When I add this =IF([Days Overdue]@row <> "", 1, 0)
to the function
such as:
=IF(OR([Days Overdue]@row <> "", AND([Days Overdue]@row > -5, [% Complete]@row < 1)), 1, 0)
I then see this:
I want to clear those flags if days overdue = "". Thank you!
-
Try this:
=IF(AND([Days Overdue]@row > -5, [% Complete]@row < 1)), 1, IF([Days Overdue]@row = "", 0, 1))
Gia Thinh Technology - Smartsheet Solution Partner.
-
Try this also. I think it better:
= IF([Days Overdue]@row = "", 0, IF(AND([Days Overdue]@row > -5, [% Complete]@row < 1), 1, 0))
Gia Thinh Technology - Smartsheet Solution Partner.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!