Forum Discussion
spagad6263
Post Patron
3 years agoHow to format row background color for a matrix?
Hi, I have a matrix table, and would like to format the background color for the row which has Passed = "Y". I though Conditional Formatting might work, but can't figure it out. Any suggestions? Muc...
- 3 years ago
PhilipTreacy
Super User
3 years agoHi spagad6263
Create a measure to set the background color like this
BG Color = IF (SELECTEDVALUE('DataTable'[Passed]) = "Y", "#0F0")
then you need to create a CF rule to apply the color. This has to be done for each column in the matrix i.e. there is a separate rule for Count and %
Regards
Phil