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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
claxxx
Frequent Visitor

Maximum of the values displayed in a matrix table

Hello

I want to have in my column "max sales" the maximum of the values displayed in my table.

Here in the example below I would like to show in the column  "max sales" : 1 195 256 in all the lines. 

Do you how I can do that in a DAX formula? 

 

claxxx_0-1637256582872.png

thank you

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@claxxx , Assume sales is a measure and you are using month year column in row

 

calculate( maxx(values(Table[Year Month]),[sales]), allselected() )

 

 

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

2 REPLIES 2
claxxx
Frequent Visitor

Thank you a lot! It works 🙂

amitchandak
Super User
Super User

@claxxx , Assume sales is a measure and you are using month year column in row

 

calculate( maxx(values(Table[Year Month]),[sales]), allselected() )

 

 

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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