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.
I want to build a matrix with labels that shows the relationship between each pair of values. Example: Confusion matrix. I have data in a table like below. How can i model this data and add to matrix/any other visual.
Is it possible to have dynamic number of columns, by any chance?
Solved! Go to Solution.
Hi @Abhaykumar
You may try to use Unpivot other columns to create a table. Then create a measure to get the dynamic number of columns. For example:
Measure = DISTINCTCOUNT(Table2[Class])
You may try to drag the new table’s column to Rows and create measures to compare the values. For example:
1 = IF ( SELECTEDVALUE ( Table2[Column1] ) = SELECTEDVALUE ( 'Table2 (2)'[Value] ), SELECTEDVALUE ( Table2[Column1] ), 0 )
Regards,
Cherie
Hi @Abhaykumar
You may try to use Unpivot other columns to create a table. Then create a measure to get the dynamic number of columns. For example:
Measure = DISTINCTCOUNT(Table2[Class])
You may try to drag the new table’s column to Rows and create measures to compare the values. For example:
1 = IF ( SELECTEDVALUE ( Table2[Column1] ) = SELECTEDVALUE ( 'Table2 (2)'[Value] ), SELECTEDVALUE ( Table2[Column1] ), 0 )
Regards,
Cherie
User | Count |
---|---|
139 | |
70 | |
68 | |
52 | |
52 |
User | Count |
---|---|
209 | |
92 | |
64 | |
60 | |
57 |