Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi Expert,
I need your support for make the visualization for below attached samples data.
Note : Group status colour coding need to change based on Team KPIs colour coding, Group Status should be take minium values
Solved! Go to Solution.
Please download my example PBIX solution from Onedrive here
Add a conditional column to the query
Create two measures
Colour =
var colour = MIN('Table'[Colour code])
RETURN
SWITCH(colour,
3 , "green",
2 , "yellow",
"red")
Cell name =
// either display KPI or Team in cell
IF(ISFILTERED('Table'[KPI]),
SELECTEDVALUE('Table'[KPI]),
SELECTEDVALUE('Table'[Team])
)
Create a matrix visual and add conditional colour formating.
Note how the measure behaves.
The rows show the KPI but the total show the Team.
Set the matrix visual layout to Outline. This will flip the total line to the top, rather than the bottom
Hide the row and column headers with white text
Increase values and total font sizes
Create white grid lines
Congratulations, you have a visual !
I would be most garetful if you would click the [Accept solution] and the thumbs up button.
Thank you
Please download my example PBIX solution from Onedrive here
Add a conditional column to the query
Create two measures
Colour =
var colour = MIN('Table'[Colour code])
RETURN
SWITCH(colour,
3 , "green",
2 , "yellow",
"red")
Cell name =
// either display KPI or Team in cell
IF(ISFILTERED('Table'[KPI]),
SELECTEDVALUE('Table'[KPI]),
SELECTEDVALUE('Table'[Team])
)
Create a matrix visual and add conditional colour formating.
Note how the measure behaves.
The rows show the KPI but the total show the Team.
Set the matrix visual layout to Outline. This will flip the total line to the top, rather than the bottom
Hide the row and column headers with white text
Increase values and total font sizes
Create white grid lines
Congratulations, you have a visual !
I would be most garetful if you would click the [Accept solution] and the thumbs up button.
Thank you
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 14 | |
| 11 | |
| 9 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 19 | |
| 17 | |
| 12 |