Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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?
for Ex - U12, U15, U18, U7 etc?
Solved! Go to Solution.
SWITCH(
SELECTEDVALUE('Table'[UCategory]),
"U12", 1,
"U15",1
// and so on
)
Then use conditional formatting to color everything yellow, where it equals 1
SWITCH(
SELECTEDVALUE('Table'[UCategory]),
"U12", 1,
"U15",1
// and so on
)
Then use conditional formatting to color everything yellow, where it equals 1
Thank you very much 🙂 this helps!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
100 | |
64 | |
44 | |
37 | |
35 |