Forum Discussion
Anonymous
4 years agoNot applicable
Conditional Formatting - Age groups
I have a dataset of multiple teams with different age groups named as U5, U6 ..... to U16. How do i use formatting to highlight only a few selected age groups for each team in the matrix chart? ...
- 4 years ago
SWITCH( SELECTEDVALUE('Table'[UCategory]), "U12", 1, "U15",1 // and so on )Then use conditional formatting to color everything yellow, where it equals 1
NickolajJessen
4 years agoSolution Sage
SWITCH(
SELECTEDVALUE('Table'[UCategory]),
"U12", 1,
"U15",1
// and so on
)Then use conditional formatting to color everything yellow, where it equals 1
Anonymous
4 years agoNot applicable
Thank you very much 🙂 this helps!