IF and Date with N/A
Sldollman
✭✭✭
Hello,
I'm attempting to put to arguments together keep coming up with "Invalid argument".
Each of these work individually:
=IF((Date@row < TODAY(), 1, 0))
=IF(CONTAINS("NA", Date@row), 1, 0)
My goal is to check the "date" cell. If it less than Today, check. Or if it contains "NA" then check.
How do I put these together?
Thank you in advance!
Best Answer
-
Hi,
See if this will work for you:
=IF(ISDATE(Date@row), IF(Date@row < TODAY(), 1), IF(CONTAINS("NA", Date@row), 1, 0))
Answers
-
Hi,
See if this will work for you:
=IF(ISDATE(Date@row), IF(Date@row < TODAY(), 1), IF(CONTAINS("NA", Date@row), 1, 0))
-
This worked! Thank you so much! :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 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!