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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Displaying columns as a grid?

newbieuser_0-1621446857543.png

I have data in the above format and I wish to show it like this for any particular day:

newbieuser_1-1621446902682.png

Is it possible?

Thanks!

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

There's not really a need to do that in DAX. All the necessary transforms are done in Power Query. Or am I missing something?

View solution in original post

8 REPLIES 8
lbendlin
Super User
Super User

There's not really a need to do that in DAX. All the necessary transforms are done in Power Query. Or am I missing something?

Anonymous
Not applicable

Ok Thanks! I'll try it 🙂

lbendlin
Super User
Super User

Here is a simplistic approach using some Power Query but mostly the matrix visual.  Let me know if you need it all in Power Query.

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("JY3BCsIwDIbfpefB1j6CO8yDguhA2Ogh1mwNurbE7v1N9JL/40/4Ms/GtrZ1nbOmMSfKSWIghmVBoT4iVohCV3zKPLx3rQdG1MMemHMVGPMGNQtcsBTkj/GNip2KOzUfqRTdj7QiS074YJA8w4qpKt0jVfy9gPBSU65/5bSHECmR4K1QghCN918=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t, #"Animal 1" = _t, #"Animal 2" = _t, #"Animal 3" = _t, #"Colour 1" = _t, #"Colour 2" = _t, #"Colour 3" = _t, #"Veg 1" = _t, #"Veg 2" = _t, #"Veg 3" = _t]),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Date"}, "Attribute", "Value"),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Unpivoted Other Columns", "Attribute", Splitter.SplitTextByEachDelimiter({" "}, QuoteStyle.Csv, false), {"Attribute.1", "Attribute.2"})
in
    #"Split Column by Delimiter"

 

lbendlin_0-1622215066925.png

 

Anonymous
Not applicable

Great! That seems to work in the answer, but I still need to understand how to put that in Power BI (DAX?)

lbendlin
Super User
Super User

you can include text tables in your post. No need for Excel.

Anonymous
Not applicable

I tried many times and it gives me an "HTML detected" error. When clicking on "remove HTML and try again" it goes into a loop. Which is why I had to paste it as a picture to begin with.

lbendlin
Super User
Super User

yes, this is certainly possible in Power Query or in DAX  (setting aside the question of why?!? )

 

Please provide sample data in usable format (not as a picture) and show the expected outcome.

Anonymous
Not applicable

I can't seem to upload an excel here - it isn't too difficult to re-create though.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors