Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
User | Count |
---|---|
20 | |
18 | |
17 | |
11 | |
7 |
User | Count |
---|---|
28 | |
28 | |
13 | |
12 | |
12 |