Hi everyone -
I have 2 helper columns (Column Names: Apps scheduled for today and Apps scheduled yesterday) that is supposed to look at the create date and today's date to determine if a checkbox should be checked or not.
Here are the formulas:
Apps scheduled for today: =IF(AND(YEAR(Created@row) = YEAR(TODAY()), DAY(Created@row) = DAY(TODAY())), 1)
Apps scheduled yesterday: =IF(AND(YEAR(Created@row) = YEAR(TODAY()), DAY(Created@row) = (DAY(TODAY())) - 1), 1)
In looking at the Create Date the date is 11/07/2023 8:48 PM. The checkbox for "Apps scheduled for today" is still checked even though today is 11/08/2023. Is it because of the time of day?