Hi Community
I have a check box column with a column formula to check if the Start Date and End Date are Todays Date.
=IF(AND(ISDATE([Start Date]@row ), ISDATE([End Date]@row ), [Start Date]@row <= TODAY(), [End Date]@row >= TODAY()), 1, 0)
This works when there is a date range, ie Start Date is 18/2/26 and End Date is 26/2. However, if Start Date and End Date are the same date ie 19/2, the formula does not work and the check box remains unticked.
Columns for Dates are column type Date.
What am I doing wrong?
Appreciate any assistance!