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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JakobH
Frequent Visitor

Binning dates in cumulative total measure

Hello

I have a "Cumulative Total" measure. I want to create a table/graph where cumulative amounts are displayed against months

Simply binning the dates does not work. Then only the sum for the specific months are displayed instead of the cumulative amount.

Any tips on how i can show the cumulative total against months?

 

Cumulative Total = 
CALCULATE(SUM(Fact[Amount]),
    FILTER(ALL(Fact[Date]),
        Fact[Date] <= MAX(Fact[Date])
        )
    )

 

1 ACCEPTED SOLUTION
Alf94
Super User
Super User

Hi @JakobH,

 

If you are looking for a cumulative total that starts again every year you can try the following:

 

Cumulative total =
    CALCULATE(
        SUM( Fact[Amount] ),
        DATESYTD( Calendar[Date] )
    )

 

where Calendar is a table containing all your dates.

 

If I answered your question, please mark my post as a solution.

Best,

View solution in original post

2 REPLIES 2
Alf94
Super User
Super User

Hi @JakobH,

 

If you are looking for a cumulative total that starts again every year you can try the following:

 

Cumulative total =
    CALCULATE(
        SUM( Fact[Amount] ),
        DATESYTD( Calendar[Date] )
    )

 

where Calendar is a table containing all your dates.

 

If I answered your question, please mark my post as a solution.

Best,

JakobH
Frequent Visitor

Thanks for the reply, but what i wanted to achieve is to get a running total where all entries within a month are summed up.

I found a solution that works, where i create a new column which equals the the binned date group and use this column in my measure:

Cumulative Total = 
CALCULATE(SUM(Fact[Amount]),
    FILTER(ALL(Fact[BinnedDate]),
        Fact[BinnedDate] <= MAX(Fact[BinnedDate])
        )
    )

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors