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
Anonymous
Not applicable

Running total of measure

Hi all

I have been googling and reading posts a lot, but I still can't find a solution.

The root of my problem is probably the way the running total is calculated, but I can't find the reason.

YearMonthDayLJ_MAX_SUMRT_LJ_MAX_SUMWhat I want
2020January1917917917
2020January290717311824

 

The data of the last 5 years:

YearMonthDaySum per day
2016January1543
2016January2664
2017January1515
2017January2585
2018January1712
2018January2907
2019January1917
2019January2814
2020January11104
2020January21180

 

 

LJ_MAX_SUM= 
VAR Temp=
UNION(
ROW("test2", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-1,YEAR))),
ROW("test3", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-2,YEAR))),
ROW("test4", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-3,YEAR))),
ROW("test5", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-4,YEAR))),
ROW("test6", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-5,YEAR))),
ROW("test7", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-6,YEAR))),
ROW("test8", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-7,YEAR))),
ROW("test9", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-8,YEAR))),
ROW("test10", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-9,YEAR))),
ROW("test11", CALCULATE(SUM(data[Value]),DATEADD('Calendar_future'[Date],-10,YEAR)))
)
RETURN
MAXX(Temp, [test2])/1000

 

 

 

RT_LJ_SUM_MAX = CALCULATE (
   [LJ_MAX_SUM],
    FILTER (
        ALLSELECTED(  'Calendar_future'),
        'Calendar_future'[Date] <= MAX ( 'Calendar_future'[Date] )
    )
)

 

 

The measure ''RT_LJ_SUM_MAX' takes the green and blue marked value and calculates the running total. What I want is, that it takes the green and red value to calculate the running total.

How can I do this?

Really appreciate your help.

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hello @adrianrupp ,

Try this:

RT_LJ_SUM_MAX =
SUMX (
    FILTER (
        ALLSELECTED ( 'Calendar_future' ),
        'Calendar_future'[Date] <= MAX ( 'Calendar_future'[Date] )
    ),
    [LJ_MAX_SUM]
)

Or this:

RT_LJ_SUM_MAX =
SUMX (
    FILTER (
        ALLSELECTED ( 'Calendar_future' ),
        'Calendar_future'[Date] <= MAX ( 'Calendar_future'[Date] )
            && Calendar_future[Date]. [Year] = MAX ( Calendar_future[Date].[ Year] )
    ),
    [LJ_MAX_SUM]
)

Best regards

Icey

If this post helps,then consider Accepting it as the solution to help other members find it faster.

View solution in original post

2 REPLIES 2
Icey
Community Support
Community Support

Hello @adrianrupp ,

Try this:

RT_LJ_SUM_MAX =
SUMX (
    FILTER (
        ALLSELECTED ( 'Calendar_future' ),
        'Calendar_future'[Date] <= MAX ( 'Calendar_future'[Date] )
    ),
    [LJ_MAX_SUM]
)

Or this:

RT_LJ_SUM_MAX =
SUMX (
    FILTER (
        ALLSELECTED ( 'Calendar_future' ),
        'Calendar_future'[Date] <= MAX ( 'Calendar_future'[Date] )
            && Calendar_future[Date]. [Year] = MAX ( Calendar_future[Date].[ Year] )
    ),
    [LJ_MAX_SUM]
)

Best regards

Icey

If this post helps,then consider Accepting it as the solution to help other members find it faster.

Anonymous
Not applicable

Hi @Icey 

Thank you for the reply!

Both solutions work!

Best regards,

Adrian

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.