Forum Discussion
Anonymous
2 years agoNot applicable
Conditional Formatting - Matrix Table
Hi Team, I have below table and created Matric table in PI file, now I need to highlight rows wise if value mismatch.
- 2 years ago
So if I understood correctly all values in the same category should be the same, otherwise be highlighted. Find attached my proposed solution. I adapted NikhilChenna 's recommendation into this formula:
Color Logic = IF(SUM('Table'[Cat14]) <> SUM('Table'[Cat15]) || SUM('Table'[Cat14])<> SUM('Table'[Cat16]) || SUM('Table'[Cat15]) <> SUM('Table'[Cat16]), "#FF7F7F", "#FFFFFF")You would need to pivot your table though, assuming you don't have other data.
ray_aramburo
Super User
2 years agoWhat would be the criteria to determine if a value is a mismatch?
Anonymous
2 years agoNot applicable
Hi ray_aramburo
Entire row highlight amber color
- ray_aramburo2 years ago
Super User
Which values do you want to compare I meant?
- Anonymous2 years agoNot applicable
- ray_aramburo2 years ago
Super User
So if I understood correctly all values in the same category should be the same, otherwise be highlighted. Find attached my proposed solution. I adapted NikhilChenna 's recommendation into this formula:
Color Logic = IF(SUM('Table'[Cat14]) <> SUM('Table'[Cat15]) || SUM('Table'[Cat14])<> SUM('Table'[Cat16]) || SUM('Table'[Cat15]) <> SUM('Table'[Cat16]), "#FF7F7F", "#FFFFFF")You would need to pivot your table though, assuming you don't have other data.