Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello guys, I have a data with the iformation below
I am pretty confused on how I can visualize this data. I want my X axis to be QRM, PL and CL
The Y-Axis will be Rarely being the lowest to Excellent being highest. I will have slicer on week and name.
| Week | Name | QRM | PL | CL |
| 1 | Miguel | Rarely | Good | Usually |
| 2 | Miguel | Sometimes | Usually | Excellent |
| 2 | John | Excellent | Rarely | Excellent |
| 1 | Julius | Rarely | Excellent | Rarely |
| 2 | Claire | Good | Sometimes | Sometimes |
I have a table for lookup values
| Id | Rating | Grade |
| 1 | Excellent | 4 |
| 3 | Usually | 3 |
| 5 | Sometimes | 2 |
| 6 | Rarely | 1 |
| 7 | Never | 0 |
Solved! Go to Solution.
Hi @Kalachuchi ,
Please follow these steps:
1. Select Week and Name columns -->unpivot other columns
2. Add Grade column to Table using the following formula:
Grade =
LOOKUPVALUE ( Rating[Grade], Rating[Rating], 'Table'[Value] )
3. Create a visual like this:
My final output looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi @Kalachuchi ,
Please follow these steps:
1. Select Week and Name columns -->unpivot other columns
2. Add Grade column to Table using the following formula:
Grade =
LOOKUPVALUE ( Rating[Grade], Rating[Rating], 'Table'[Value] )
3. Create a visual like this:
My final output looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
@Kalachuchi , unpivot the first table and join with second table on rating or merge the two
https://www.youtube.com/watch?v=2HjkBtxSM0g
https://radacad.com/pivot-and-unpivot-with-power-bi
Merge : https://radacad.com/append-vs-merge-in-power-bi-and-power-query
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 68 | |
| 31 | |
| 27 | |
| 24 |