Good Evening all,
I am trying to do something simple. I have a "Due Date" column. Whenever that date is within the next 7 days I would like it to check a box.
However, the issues I am getting are - it is checking the boxes for due dates have no date populated as well as dates that are in the past??
Here is my current formula where I have finally gotten the blank dates to stop checking the boxes, but now I am stuck with a due date of 1/10/22 that is checking the box..
=IF(ISBLANK([Due Date]@row), "", IF([Due Date]@row <= TODAY() + 7, 1))
Someone please help me figure out where I went wrong?
Thanks!!