Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Everyone, I'd appreciate your help on the following:
I have Year, Quarter, Attribute, and Value set up in a matrix like this:
and a matrix similar to this:
Is there a way to conditionally colour the row and row header? e.g. if attribute= A-19, color the value and row header blue.
Hi @fa82
Currently it is not supported to apply conditional formatting to row/column headers in Matrix visuals. It only applies to Values fields. You can create a measure to decide colors, then use Format by Field value based on this measure. HTML Color Codes
Color = IF(SELECTEDVALUE('Table'[Attribute])="A-19","#89CFF0")
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.