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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 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!