I am trying to develop a formula to check the box if the Date is today or within the last week(6 days). The formula that I have so far is
=IFERROR(IF(AND(Date@row >= TODAY() - WEEKDAY(TODAY(), 1), Date@row <= TODAY() + (6 - WEEKDAY(TODAY(), 7))), 1, 0), "")
However, the box is not checking.