Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
jesusssss
Helper II
Helper II

Make a cumulative measure from a divided measure

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.
1 ACCEPTED 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])

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

try this:

Measure = 
CALCULATE(
    [divided],
    FILTER(
        ALL(Calendar),
        Calendar[Date] <= MAX(Calendar[Date])
    )
)

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])

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.