Smartsheet at- risk formula
Hi all, I'm having a little trouble with creating the right formula for my "at risk" / "attn" column.
I only want the column to flag is the status is not complete and the target end date is past due. My current formula is =IF(AND(Status301 <> "Complete", [Target End Date]301 <= TODAY()), 1, 0)
Currently, the column flags even when the target end date is blank. I only want the flag when the status is not complete, and the target end date is past due, AND the target end date is not blank.
Please help!
Thanks
Best Answers
-
Try somethingn like this...
=IF([Target End Date]301 <> "", IF(AND(Status301 <> "Complete", [Target End Date]301 <= TODAY()), 1, 0))
This will take your original formula and run it only if the [Target End Date] is not blank.
-
Hi Paul,
I have an updated formula I would like to use, and I ma having trouble and not sure whether to use the AND/OR feature. I only want the flag when the:
- End date is not blank
- End date is in the past
- And status is not complete OR received.
Current formula is you helped me with is
=IF([End Date]1 <> "", IF(AND(Status1 <> "Completed", [End Date]1 <= TODAY()), 1, 0))
Not sure how to incorporate the status is not complete OR received component.
Any help will be appreciated.
Thank you!
-
Try this...
=IF([End Date]1 <> "", IF(AND(Status1 <> "Completed", Status1 <> "Received", [End Date]1 <= TODAY()), 1, 0))
Answers
-
Try somethingn like this...
=IF([Target End Date]301 <> "", IF(AND(Status301 <> "Complete", [Target End Date]301 <= TODAY()), 1, 0))
This will take your original formula and run it only if the [Target End Date] is not blank.
-
Thank you so much, it worked perfectly!!!!!!!!
-
Happy to help! 👍️
-
Hi Paul,
I have an updated formula I would like to use, and I ma having trouble and not sure whether to use the AND/OR feature. I only want the flag when the:
- End date is not blank
- End date is in the past
- And status is not complete OR received.
Current formula is you helped me with is
=IF([End Date]1 <> "", IF(AND(Status1 <> "Completed", [End Date]1 <= TODAY()), 1, 0))
Not sure how to incorporate the status is not complete OR received component.
Any help will be appreciated.
Thank you!
-
Try this...
=IF([End Date]1 <> "", IF(AND(Status1 <> "Completed", Status1 <> "Received", [End Date]1 <= TODAY()), 1, 0))
-
You are a master! Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 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!