IF formula with AND and NOT
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
- 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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!