Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
TAN_THOMAS
Frequent Visitor

Matrix table not displaying all the values

I am trying to use matrix table to create a table visualisation. However, it is only displaying 1 row of data at a time instead of all the data values. 

 

This is my entire row of data that i want to display: 

TAN_THOMAS_1-1718076338006.png

 

This is what it is showing. Only 1 line and I dont have the option to select "Don't Summarize" 

 

TAN_THOMAS_0-1718076323592.png

 

How can i display all the values? Please help me thank you. 

 

7 REPLIES 7
danextian
Super User
Super User

All dimensions added to the value tile must be aggregated one way or another and are evaluated  based on the intersection of rows and columns. The matrix visual doesnt know which row in Value 1 is the equivalent in Value2.  The same thing happens if you do it in a pivot table in Excel. Your table should look something like below to be able split the values into rows:

danextian_0-1718081429449.png

The number columns goes to the row tile.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
rajendraongole1
Super User
Super User

Hi @TAN_THOMAS - As suggested by @VahidDM - If you want to display all the values you can change it to table chart.

 

if you are looking for matrix visualization, instead of placing the column1 in Column tab, please it in Row tab, you can see both the value1 and value2 with aggregated column2.

 

rajendraongole1_0-1718077548734.png

 

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





VahidDM
Super User
Super User

Hey @TAN_THOMAS 

 

you need to use a table visual and write two measures for V1 and V2 and use them in your table.

Can't do that with Matrix

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

 

LinkedIn|Twitter|Blog |YouTube 

I need Value 1 and Value 2 to be the row header and the numerical values to be the column values. Using the table will result in Value1 and Value2 being displayed as a long list of rows and the respective values to it. I want Value 1 and Value 2 to be the row header and all the values as below the header 

Hi @TAN_THOMAS - You can acheive this in power query editor as below steps:

 

Create an index column in table, Next do a pivot by selecting the Column1 and you can see the below snapshot for pivot column choose the below configuration and output you will see as expected row header with Value 1 and value 2.

 

rajendraongole1_1-1718079070605.png

 

 

rajendraongole1_2-1718079095028.png

 

 

final result should be as follows:

 

rajendraongole1_0-1718078860830.png

 

 

Once you achieve the output you can remove the index column if it is not required.

 

Advanced query output:

let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkvMKU01VNJRMjQwUIrVIUnAwpJUHcZoOkwJajBB5aNxTc0I6DcxQBYxAooYYYiYmKLyDTG0GBNQgCFgSkgBYQGCrjIGKogFAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"Column2", Int64.Type}}),
AddedIndex = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type),
PivotedTable = Table.Pivot(AddedIndex, List.Distinct(AddedIndex[Column1]), "Column1", "Column2", List.Max)
in
PivotedTable

 

Hope it works

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





in that case, follow @rajendraongole1 instruction to add those as row title

@VahidDM 
What measure to write? Can you provide me an example of how i can display the data in a table form using measure? 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors