Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Thanks for the responce
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |