I’m also interested in how to express a date range in the row filter. For example, the range would be everything from the beginning of the month to TODAY().
Tried to find articles but maybe I’m not searching for the correct thing.
Thanks
MONTH([your column name]) gives the number of the month (1…12) represented by the given date.
Subtracting a number from a date adjusts the date back by that number of days.
So (TODAY() - MONTH([your column name]) really doesn’t give you anything meaningful.
The DAY() function, though, gives the day-of-the-month of the given date. If we subtract the day-of-the-month from the date, we get the date of the last day of the previous month:
(TODAY() - DAY(TODAY()))
We could also use the EOMONTH() function to do the same thing:
EOMONTH(TODAY(), -1)
To ask the question, “does the date in a column fall between the beginning of the month and today?”: