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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
rafaelprog
Frequent Visitor

SUM of matrix columns Total Current

I have the following matrix

 

Matrix.jpg

 

I'm trying to make the sum of the months

 

But when I add the measure "total current in period", it creates a column for each Month!

 

matrix 3.jpg

 

Total Current In Period = 
CALCULATE(
	SUM('AGG_INFOGER_CTR'[Total]);
	FILTER(
		CALCULATETABLE(
			SUMMARIZE(
				'DIM_PERIODO';
				'DIM_PERIODO'[Itemperiodo];
				'DIM_PERIODO'[Period]
			);
			ALLSELECTED('DIM_PERIODO')
		);
		ISONORAFTER(
			'DIM_PERIODO'[Itemperiodo]; MAX('DIM_PERIODO'[Itemperiodo]); DESC;
			'DIM_PERIODO'[Period]; MAX('DIM_PERIODO'[Period]);
		)
	)
)

 

The calculation is not wrong but I just wanted the summation of the last column!

Current total in the context of the row

Example:
matrix 4.jpg

What would be a dax function?  I am a beginner
Thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@rafaelprog,

The issue has nothing to do with DAX. No matter what additional column or measure you add in Value section of the Matrix visual, it will create a column for each month, and it is not possible to show only the last column.

In your scenario, does it return your expected result when you just reserve Total field in the Value section and turn on “Total column”?
1.PNG

 

Regards,
Lydia Zhang

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@rafaelprog,

The issue has nothing to do with DAX. No matter what additional column or measure you add in Value section of the Matrix visual, it will create a column for each month, and it is not possible to show only the last column.

In your scenario, does it return your expected result when you just reserve Total field in the Value section and turn on “Total column”?
1.PNG

 

Regards,
Lydia Zhang

It Worked, Thanks

Anonymous
Not applicable

@rafaelprog,

Glad to hear the issue is solved, please mark my reply as answer, that way, other community members would easily find the answer when they get same issues.

Regards,

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.

Top Solution Authors