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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
jp2020
Helper I
Helper I

Cumulative Running Total Issue with Legend

Hi all,

 

I have a cumulative column working using quick measure:

 

Cumulative Amount= CALCULATE (

SUM('Table'[Amount] ),
FILTER (ALLSELECTED('Table'),
'Table'[ORDER_DATE] <= MAX( 'Table'[ORDER_DATE] )
)
)

 

ORDER_DATEAmountCumulative Amount
JAN

10

10
FEB515
MAR520

 

However when I add another column (client type) the monthly totals are duplicating inthe cumulative column.

 

How do I get cumulative totals per the client type by month?

 

ORDER_DATECLIENT TYPEAmountCumulative Amount
JANA210
JANB510
JANC310
FEBA115
FEBB

3

15
FEBC115
MARA320
MARB120
MARC120

 

So I would like this:

ORDER_DATECLIENT TYPEAmountCumulative Amount
JANA22
JANB55
JANC33
FEBA13
FEBB

3

8
FEBC14
MARA36
MARB19
MARC15
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jp2020 , Try if this can help

Cumulative Amount= CALCULATE (
SUM('Table'[Amount] ),
FILTER (ALLSELECTED('Table'),'NT Transactions'[Client_Type] =max('NT Transactions'[Client_Type] ) &&
'NT Transactions'[ORDER_DATE] <= MAX( 'NT Transactions'[ORDER_DATE] )
)
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@jp2020 , Try if this can help

Cumulative Amount= CALCULATE (
SUM('Table'[Amount] ),
FILTER (ALLSELECTED('Table'),'NT Transactions'[Client_Type] =max('NT Transactions'[Client_Type] ) &&
'NT Transactions'[ORDER_DATE] <= MAX( 'NT Transactions'[ORDER_DATE] )
)
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi!
I tried this and it works! Thanks! But I have met another problem. If client C does not have any order in MAR I would like that it shows me the number from the previous month (like 4+0=4), but client C does not appear at all. Is it some way to do it like this? All clients are showen every month with result to this month.

That worked perfectly, thank you!

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.