Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
@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) )
I couldnt seem to add a measure as a column in a matrix
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.