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 All,
Currently i have calculated Rolling 30 days average , i want to display Rolling 30 days cummilitive amount.
Thanks,
VAdi
Hi,
I am not sure if I understood your question correctly, but please check the below and the attached pbix file.
Cumulative Measure =
VAR __Date =
MAX ( 'Date'[Date] )
VAR __Table =
ADDCOLUMNS (
DATESINPERIOD ( 'Date'[Date], LASTDATE ( 'Date'[Date] ), -30, DAY ),
"__30Avg", [Rolling 30 Days Average]
)
VAR __Result =
SUMX ( __Table, [__30Avg] )
RETURN
__Result
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Thanks for the responce
User | Count |
---|---|
15 | |
13 | |
12 | |
10 | |
10 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
10 |