Help with IF, AND, THEN Formulas to change status column
I am stuck! I've tried multiple variations of this formula but can't seem to get anything to work. I'm looking to have the status column changed automatically based on two other columns; "Date Required" column which is a date and a "No Follow Up Required" column which is a checkbox.
Here's what I'm looking for the formula to do:
If the "No Follow Up Required" checkbox is checked change status to "Complete"
If the "No Follow Up Required" checkbox is unchecked and the "Date Required" date has passed then change status to "Overdue"
Otherwise I want the status to be set to "In Progress"
Here is the formula I've been trying
=IF([No Follow Up Required]@row = 1, "Complete", IF(AND([No Follow Up Required]@row = 0, [Date Required]@row<=TODAY, "Overdue", "In Progress"))
Hoping someone can help me figure this out.
Best Answer
-
@Jay F Try this:
=IF([No Follow Up Required]@row = 1, "Complete", IF(AND([No Follow Up Required]@row = 0, [Date Required]@row < TODAY()), "Overdue", "In Progress"
Answers
-
@Jay F Try this:
=IF([No Follow Up Required]@row = 1, "Complete", IF(AND([No Follow Up Required]@row = 0, [Date Required]@row < TODAY()), "Overdue", "In Progress"
-
@ShelbyWarren You are a freakin lifesaver, it worked!! This was driving me mad haha!
-
@Jay F Glad it worked. I've been there and done that before too.... 😅
-
@Jay F Just know that anytime all of the cells mentioned in the formula are blank, the status will be "Overdue". I would add an IF statement that takes into account that if none of the cells contain data, show the status as "Not Started" or something like that.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!