IF formula with AND and NOT
Options

andhou
✭✭
Hi,
I'm trying to get a "yes" or "no" answered based on the conditions below. I'm receiving the "incorrect argument set" error; however, I am unable to determine where the error is found. Thank you in advance!
- If date is today or in the past
- the status is: anything but complete
=IF(AND([Target Start Date]@row < TODAY(), IF(NOT(Status@row = "Complete"), "Yes", "No")))
Best Answer
-
Instead of using not, you can have the second statement be not equal to complete. The following should work:
=IF(AND([Target Start Date]@row < TODAY(), Status@row <> "Complete"), "Yes", "No")
Answers
-
Instead of using not, you can have the second statement be not equal to complete. The following should work:
=IF(AND([Target Start Date]@row < TODAY(), Status@row <> "Complete"), "Yes", "No")
-
Hi Daryl! Thank you!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!