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
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 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!