Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello good day,
I am trying to make a measure to accumulate the value of another measure month by month, the other measure is the following:
divided=DIVIDE([SUM NC],[Sum Amount],0)
I already managed to make accumulated measurements with tables that only had to be added and put this dax language:
Accumulated amount from month to month =
CALCULATE(
SUM('4 - Number of machines ready'[number]),
FILTER(ALL(Calendar),
Calendar[Date] <= MAX(Calendar[Date])))
but when trying to somehow replicate it in this new case I am not able since I don't know how to make a cumulative measure using a measure already created.
I would really appreciate your help, thank you.
Solved! Go to Solution.
I tried with that measure but it didn't work for me, in the end I managed to do it with this measure
Cumulative month to month Good = TOTALYTD([Split],Calendar[Date])
try this:
I tried with that measure but it didn't work for me, in the end I managed to do it with this measure
Cumulative month to month Good = TOTALYTD([Split],Calendar[Date])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |