Using IF/And statements
I am running into the issue where I made a formula to flag a row if the due date is set to today or before today. But I don't know how to change it to not flag if the job has already been completed. Here is my current formula: =IF([End Date]@row <= TODAY(0), 1, 0) and here is what it is producing (below). But I don't want the flag to be there once the job is complete.
Best Answers
-
Hi @Alicia D,
Try this.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete"), 1, 0)
Hope this helps,
Dave
-
@DKazatsky2 This worked, thank you! Is there a way to have it so that it doesn't fill in the areas with blank spots in the status column? See below
-
This is untested but see if this does it.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete",Status@row <> ""), 1, 0)
Answers
-
Hi @Alicia D,
Try this.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete"), 1, 0)
Hope this helps,
Dave
-
@DKazatsky2 This worked, thank you! Is there a way to have it so that it doesn't fill in the areas with blank spots in the status column? See below
-
This is untested but see if this does it.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete",Status@row <> ""), 1, 0)
-
This worked, thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.9K Get Help
- 377 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 289 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!