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
pvural
Advocate I
Advocate I

Running Total Reset based on Column Attribute

Hello everyone

 

I have read numearous articles/posts regarding running total or cumulative total, but couldn't find anything as to how to reset the running total at the beginning of each year.

 

I used Quick Measure function on Power BI to calculate the running total as follows:

 

Cumulative_Net Revenue =
CALCULATE(
 SUM('Project Details_USD'[MTD Net Revenue]),
 FILTER(
  ALLSELECTED('DateKey'[Date]),
  ISONORAFTER('DateKey'[Date], MAX('DateKey'[Date]), DESC)
 )
)

 

But cannot figure out where to add the filter so that the January running total of each year equals to to January value of that year as opposed to it just continuosly adds up previous month cumulative to current month.

 

Below on the left is the screenshot of expected graph, and on the right what I got with quick measure formula:

 

 

 

Expected.jpg

 

Any help is greatly appreciated

 

Thank you,

Petek

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @pvural,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

Cumulative_Net Revenue =
VAR currentYear =
    YEAR ( MAX ( 'DateKey'[Date] ) )
VAR currentMonth =
    MONTH ( MAX ( 'DateKey'[Date] ) )
RETURN
    CALCULATE (
        SUM ( 'Project Details_USD'[MTD Net Revenue] ),
        FILTER (
            ALL ( 'DateKey' ),
            YEAR ( 'DateKey'[Date] ) = currentYear
                && MONTH ( 'DateKey'[Date] ) <= currentMonth
        )
    )

 

Regards

View solution in original post

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @pvural,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

Cumulative_Net Revenue =
VAR currentYear =
    YEAR ( MAX ( 'DateKey'[Date] ) )
VAR currentMonth =
    MONTH ( MAX ( 'DateKey'[Date] ) )
RETURN
    CALCULATE (
        SUM ( 'Project Details_USD'[MTD Net Revenue] ),
        FILTER (
            ALL ( 'DateKey' ),
            YEAR ( 'DateKey'[Date] ) = currentYear
                && MONTH ( 'DateKey'[Date] ) <= currentMonth
        )
    )

 

Regards

Thank you very much ... This formula generated the "expected" chart.

Appeciate your time and response on this 🙂

Petek

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.