Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi everyone,
I'm looking to calculate a rolling average, but first I need the date in which it will calculate over. My dataset currently contains 19 years worth of information, each identified with a "Season" (ex: 2021, 2022, etc). I need to identify the last date ("date_closed") of each season.
So far, I've tried some measures combining MAX(date_closed) & FILTER for "Season", but I haven't gotten what I want
I get my result in Excel, but I'm not too versed in DAX yet. Any help is appreciated
Solved! Go to Solution.
is this what you want?
Column = CALCULATE(max('Table'[date]),ALLEXCEPT('Table','Table'[season]))
Proud to be a Super User!
could you pls provide the sample data and the expected output?
Proud to be a Super User!
@ryan_mayu I can't provide the sample data, but maybe I can clarify a bit more.
Each row of my data is assigned a "season" (a year) and I would eventually like to calculate a rolling average over the "seasons". However, I need to use the final data for each season, which is associated with a particular date - the MAX of "date_closed". Final data is the accumulation of all data up until the latest date in each season.
Expected result:
If the MAX date of "Season" 2020 is 4/1/2020, all rows with 2020 as the season must show 4/1/2020 as the final date (in a column)
is this what you want?
Column = CALCULATE(max('Table'[date]),ALLEXCEPT('Table','Table'[season]))
Proud to be a Super User!
Yes, I believe this will work! The result is exactly what I'm aiming for. Thank you so much.
you are welcome
Proud to be a Super User!
User | Count |
---|---|
82 | |
79 | |
65 | |
48 | |
45 |
User | Count |
---|---|
103 | |
44 | |
39 | |
39 | |
39 |