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
PowerUser123
Helper II
Helper II

Cumulative Sum - Adjusted Value Each Day

So I created a measure called Win Loss which is just the sum of sales - 250,000 which can be seen in the 2nd column below. I wanted to create a running total of this win loss, but I don't think the measure is calculating correctly. It looks like it's taking the first day's sales less 250k, but then just adding total sales to that amount thereafter. What am I doing wrong?

 

PowerUser123_0-1647938307510.png

Win Loss Run = CALCULATE([Win Loss],FILTER(ALLSELECTED('Calendar'[Date]),'Calendar'[Date]<=MAX('Calendar'[Date])))

 

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@PowerUser123 , Try like

 

Win Loss Run = CALCULATE(sumx(values('Calendar'[Date]),[Win Loss]),FILTER(ALLSELECTED('Calendar'[Date]),'Calendar'[Date]<=MAX('Calendar'[Date])))

View solution in original post

davehus
Memorable Member
Memorable Member

Hi @PowerUser123 ,

 

Try this.

 

Running Total =
VarLastDate =LASTDATE('Date Table'[DateKey])
return CALCULATE(sum('Table'[Value]),ALLEXCEPT('Date Table','Date Table'[DateKey]),'Date Table'[DateKey]<=VarLastDate)

View solution in original post

3 REPLIES 3
PowerUser123
Helper II
Helper II

Both answers work great thank you!

davehus
Memorable Member
Memorable Member

Hi @PowerUser123 ,

 

Try this.

 

Running Total =
VarLastDate =LASTDATE('Date Table'[DateKey])
return CALCULATE(sum('Table'[Value]),ALLEXCEPT('Date Table','Date Table'[DateKey]),'Date Table'[DateKey]<=VarLastDate)
amitchandak
Super User
Super User

@PowerUser123 , Try like

 

Win Loss Run = CALCULATE(sumx(values('Calendar'[Date]),[Win Loss]),FILTER(ALLSELECTED('Calendar'[Date]),'Calendar'[Date]<=MAX('Calendar'[Date])))

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.