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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
JohannesM
Helper I
Helper I

Ackumulated sum with a measure

I have seen posts that explain how to do ackumulated sum from a table column but I need to show ackumulated sum in a table but with a measure as base. Is this possible? 

I have a measure that results in column B and now I want to create a measure that gives me column C if shown in a table like below.

JohannesM_0-1665686135119.png

Any ideas?

Thanks in advance!

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @JohannesM 

Please try

Ackumulated =
SUMX (
    FILTER ( ALLSELECTED ( 'Date'[Year] ), 'Date'[Year] <= MAX ( 'Date'[Year] ) ),
    [Measure]
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @JohannesM 

Please try

Ackumulated =
SUMX (
    FILTER ( ALLSELECTED ( 'Date'[Year] ), 'Date'[Year] <= MAX ( 'Date'[Year] ) ),
    [Measure]
)

Thanks!
Solved within an hour, like always. Man I love this forum 😃

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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