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
plover
Advocate II
Advocate II

Show count in matrix column headers

I have a simple matrix that uses a Date hierarchy for colums - Year Month. 

For the Rows i have account number, and for the values i have Sale Amount.

 

What i am trying to achieve is if a certain account number in a year/month does > 100k i want to count them, and somehow show them in the Matrix header. Ideally, id like to show year - then Month (Distinct count of accounts > 100k). Is this possible? To have dynamic column headers, based off a measure value?

2 REPLIES 2
amitchandak
Super User
Super User

@plover , Try a measure like

ConcatenateX(filter(Summarize(Table,Table[Account Number], Table[Month Year], "_1", [sales amount measure]), [_1] >10000) , Table[Account Number] &" - " & Table[Month Year] , unichar(10) )

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

I couldnt seem to add a measure as a column in a matrix

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