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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Accumulated sum that resets when the year changes

Hello,

I created a measure that counts the total items per month and it's working fine. This is my measure:

Cumulative_Total =

CALCULATE([Qtd_Total],

    FILTER(ALL('Table'),

        'Table'[Date] <= MAX('Table'[Date])

        )

    )

But I want my chart to reset the count when the user selects only one year in the dashboard year filter.
For example: if he selects only the items from 2022, the chart will start from zero in the month of January, and not take the count of the previous months (2021) and add to the months of the year 2022. How can I do this?

1 ACCEPTED SOLUTION
PVO3
Impactful Individual
Impactful Individual

Please try to include date to your filters like below.

Or (perhapse better) use ALLSELECTED instead of ALL/ALLEXCEPT.

 

 

Cumulative_Total =

CALCULATE([Qtd_Total],

    FILTER(ALLEXCEPT('Table','Table'[Date]),

        'Table'[Date] <= MAX('Table'[Date])

        )

    )

 

 

View solution in original post

1 REPLY 1
PVO3
Impactful Individual
Impactful Individual

Please try to include date to your filters like below.

Or (perhapse better) use ALLSELECTED instead of ALL/ALLEXCEPT.

 

 

Cumulative_Total =

CALCULATE([Qtd_Total],

    FILTER(ALLEXCEPT('Table','Table'[Date]),

        'Table'[Date] <= MAX('Table'[Date])

        )

    )

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.