Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all.
Is there a way to have different targets for each column in a matrix heat chart?
i.e. department A has a target of 100 and so the value of 98 should be darker;
dept B should only get darker nearer 300 instead.
I can only seem to have a target for the whole matrix.
Or is there a better chart to compare these values?
Many thanks for looking.
Solved! Go to Solution.
@Anonymous , Based on what I got you have to create a measure like that and have diff with value and use that in conditional formatting
Switch( True() ,
max(Table[Department]) = "A" , 100 - [measure],
max(Table[Department]) = "B" , 300 - [measure],
200 - [measure]
)
use this for conditional formatting
@Anonymous , Based on what I got you have to create a measure like that and have diff with value and use that in conditional formatting
Switch( True() ,
max(Table[Department]) = "A" , 100 - [measure],
max(Table[Department]) = "B" , 300 - [measure],
200 - [measure]
)
use this for conditional formatting
That's perfect! Thanks a lot
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!