Forum Discussion
spencer_g
9 years agoHelper I
Filter Page to Exclude Current Month
Hi everyone and thanks in advance. I have 3 years-worth of data that is continually being added to on a daily basis. At the end of each month I generate a report comparing that month and all mon...
- 9 years ago
One way would be to do something like this:
IsCurrentMonth = IF(MONTH([Date]) = MONTH(TODAY()),1,0)
Then just filter the page with IsCurrentMonth set to equal 0 only.
Guido_Beulen
3 years agoHelper I
You can filter on calendermonth using relative date: this excludes the current month from the data shown:
The same is possible for years and weeks!