Can someone please assist me in calculating week-to-date, month-to-date, and year-to-date, assuming I have the below formula:
Today = DATE(YEAR(NOW()),MONTH(NOW()),DAY(NOW()))
For the past 60 days, I used this formula and then used it as a visual filter
Last60Days = (IF(AND([Date] >= [Today]-60, [Date] <= [Today]),1,0))
I would like to do the same thing for WTD, MTD, and YTD. However, I would like it to autoupdate, not just selecting the month or week.
Thanks!