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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
Lefuneste57
Helper I
Helper I

Cumulative SUM by Month by contrat

Hi, sorry for my english, i'm french.

 

I have a table like this and i would calculate the column "Montant cumulé". So, for each Month, the cumulative amount per Month and per N°Contrat.. Can you help me to found the DAX formule for the yellow Column plesae ?

 

 

SnipImage.JPG

 

 

 

 

 

 

 

 

Thanks for helping.

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[Montant cumule] =
var __noContrat = selectedvalue ( T[N°Contrat] )
var __currentDate = max ( T[Date] )
var __cumule =
	SUMX(
		FILTER(
			ALL ( T ),
			T[N°Contrat] = __noContrat
			&&
			T[Date] <= __currentDate
		),
		T[Montant]
	)
return
	__cumule

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

[Montant cumule] =
var __noContrat = T[N°Contrat]
var __currentDate = T[Date]
var __cumule =
	SUMX(
		FILTER(
			T,
			T[N°Contrat] = __noContrat
			&&
			T[Date] <= __currentDate
		),
		T[Montant]
	)
return
	__cumule

Hi, thanks

but i have another dufficult, i have try your solution but when i have more amount in the same month with négative value, it's no good.

 

For exemple, with this table :

SnipImage.JPG

I must have for N°Contrat C002 a cumulative value of 130.

But with your formule, i have 260 :

SnipImage.JPG

 

Thank you very much for your help.

Anonymous
Not applicable

[Montant cumule] =
var __noContrat = selectedvalue ( T[N°Contrat] )
var __currentDate = max ( T[Date] )
var __cumule =
	SUMX(
		FILTER(
			ALL ( T ),
			T[N°Contrat] = __noContrat
			&&
			T[Date] <= __currentDate
		),
		T[Montant]
	)
return
	__cumule

It's ok !!!

 

Thanks for your help !  Smiley Very Happy

 

Anonymous
Not applicable

What I've given you is a CALCULATED COLUMN, not a measure. You did not say a single word about a measure.

Best
Darek

I'm sorry.

 

Can you help me ?

 

Helpful resources

Announcements
FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.