Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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.
Thanks for the responce
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
22 | |
21 | |
17 | |
14 | |
11 |
User | Count |
---|---|
42 | |
35 | |
25 | |
24 | |
22 |