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 months prior, however, I don't generate the report until a few days into the new month and then the line graphs in the report show data for the new month and I don't want to show any data for the month on this report. I want to be able to filter the entire page to exclude the current month. Does anyone know how to do this?
Thanks in advance!
Solved! Go to Solution.
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.
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.
Thanks smoupre!
Since I have multiple years worth of data, I had to make one small edition so it ended up looking like:
IF(MONTH([Date]) = MONTH(TODAY()) && YEAR([Date]) = YEAR(TODAY()), 1, 0)
But otherwise your formula worked like a charm.
Thanks again.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
180 | |
68 | |
64 | |
56 | |
55 |
User | Count |
---|---|
181 | |
103 | |
89 | |
75 | |
70 |