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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
F5447895
New Member

Convert multiple rows into one row with sorted columns

Hello,

 

please see the picture:

1.jpg

I have as input data a table where the "Number" may occurs in several lines or just in one.

As output data i need a table where the "Number" is only in 1 line, but i still need all informations of the input data.

So i would like to convert theese "Value 2" informations into columns.

If that helps it could be fixed to 3 Columns, more "Value 2"-Types doesnt appear per "Number".

 

Do you have an idea how i could do it?

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Here's one way to do it in the query editor.  To see how it works, just create a blank query, open the Advanced Editor and replace the text there with the M code below.  You need to select your first two columns then choose Group By and accept the default Count option.  You then need to modify the code in the Formula Bar to match the below, and then split the column by the "_" to get your result.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUaoE4kQgNlaK1UGIJAGxEVjECMiqAOJkIDYEixhDeSlAbIIikgrEFigiaUBsBhYxAbLKgDgdbpcp1J4MiF2xAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Number = _t, #"Value 1" = _t, #"Value 2" = _t, Amount = _t]),
    #"Grouped Rows" = Table.Group(Source, {"Number", "Value 1"}, {{"Value 2", each Text.Combine([Value 2], "_")}}),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Grouped Rows", "Value 2", Splitter.SplitTextByDelimiter("_", QuoteStyle.Csv), {"Values.1", "Values.2", "Values.3"})
in
    #"Split Column by Delimiter"

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

2 REPLIES 2
mahoneypat
Employee
Employee

Here's one way to do it in the query editor.  To see how it works, just create a blank query, open the Advanced Editor and replace the text there with the M code below.  You need to select your first two columns then choose Group By and accept the default Count option.  You then need to modify the code in the Formula Bar to match the below, and then split the column by the "_" to get your result.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUaoE4kQgNlaK1UGIJAGxEVjECMiqAOJkIDYEixhDeSlAbIIikgrEFigiaUBsBhYxAbLKgDgdbpcp1J4MiF2xAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Number = _t, #"Value 1" = _t, #"Value 2" = _t, Amount = _t]),
    #"Grouped Rows" = Table.Group(Source, {"Number", "Value 1"}, {{"Value 2", each Text.Combine([Value 2], "_")}}),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Grouped Rows", "Value 2", Splitter.SplitTextByDelimiter("_", QuoteStyle.Csv), {"Values.1", "Values.2", "Values.3"})
in
    #"Split Column by Delimiter"

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Perfect, thank you. 👍

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors