Hello!
I'm trying to check a box to send an notification to our PM if:
1. column A [Best Day and Time for Service] is less than or equal to 7 days away
2. Column B [1st Visit: Date] is blank
AND...if column A is blank, to leave the box unchecked.
When I put a date in Column A, it returns "invalid data type" in my column with my checkbox, where I ran my formula.
It seemed to be working fine before I added the first ISBLANK phrase.
Can you help? Thanks!
=IF(ISBLANK([Best Day and Time for Service]11), 0, AND(ISBLANK([1st Visit: Date]11), [Best Day and Time for Service]11 - TODAY() <= 7, 1, 0))