Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
First of all, I am calculating the Day over Day difference % using the DAX Measure below. My problem is now I need to create a rolling cumulitive total starting from the frist date provided to the last date entered. The DAX measure = CALCULATE( PD % Diff, Filter,(ALLSELECTED( fDates ), fDates [Date] <= Max ( fDate[Dates]))) isn't providing me with a daily running cumulitive total. What am I missing here?
Solved! Go to Solution.
@RobRayborn ,Assuming fDates is a date table
CALCULATE( Sumx(Values(fDates [Date]), [PD % Diff]) , Filter,(ALLSELECTED( fDates ), fDates [Date] <= Max ( fDate[Dates])))
Power BI Window function Rolling, Cumulative/Running Total, WTD, MTD, QTD, YTD, FYTD: https://youtu.be/nxc_IWl-tTc
@RobRayborn ,Assuming fDates is a date table
CALCULATE( Sumx(Values(fDates [Date]), [PD % Diff]) , Filter,(ALLSELECTED( fDates ), fDates [Date] <= Max ( fDate[Dates])))
Power BI Window function Rolling, Cumulative/Running Total, WTD, MTD, QTD, YTD, FYTD: https://youtu.be/nxc_IWl-tTc
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
75 | |
71 | |
70 | |
45 | |
43 |
User | Count |
---|---|
63 | |
41 | |
30 | |
28 | |
28 |