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
Check out the Formula Handbook template!