IF AND ISDATE
Hello,
I am trying to create a formula checking if a cell(endate) isdate and it is 60 days greater than today AND if revbud + expbud is greater than 0 then true (checkbox) if error then blank.
Here is what I have but I'm getting incorrect argument set :(
=IF(AND(ISDATE([End Date]@row, [End Date]@row > TODAY() + 60, RevBud@row + ExpBud@row > 0), true, ""))
Answers
-
It looks like the syntax may not be quite right. See if this works for you:
- =IF(AND(ISDATE([End Date]@row), [End Date]@row > TODAY(60), RevBud@row + ExpBud@row > 0), true, "")
Hope this helps!
Best,
Zach Hall
Training Delivery Manager / Charter Communications
-
Zach,
Thank you so much for your response!! Now I have invalid operation error. Hmmm
-
Try this:
=IFERROR(IF(AND([End Date@row] <= TODAY(-60), RevBud@row + ExpBud@row > 0), "True", "False"), "")
-
Hi Nic,
Your hint helped me with this solution. Thank you. All that it really needed was a capital T in True (no quotes)
=IF(AND(ISDATE([End Date]@row), [End Date]@row > TODAY(60), RevBud@row + ExpBud@row > 0), True, "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 144 Industry Talk
- 477 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!