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
lightw0rks
Frequent Visitor

Combine rows by ID and transpose columns

I have the following table, where A = a number and B = some text

 

IDDataTypeValue
1NumberA
1TextB
2NumberA
2Text B
3NumberA
3TextB

 

I would like the followng output:

 

IDNumberText
1AB
2AB
3AB

 

I have tried using Group by and transposing the columns, as well as trying to create a custom column but have not been successful. Any help would be appreciated.

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @lightw0rks ,

 

If you have the table as presented you need to:

  • Select Data Type column
  • Transform
  • Pivot Columns
  • Use values of colum Text
  • Don't aggregate
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUfIrzU1KLQIyDJVidSBCIakVJUDKCSxghKnGCF2NMaYaYxQ1sQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, DataType = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"DataType", type text}, {"Value", type text}}),
    #"Pivoted Column" = Table.Pivot(#"Changed Type", List.Distinct(#"Changed Type"[DataType]), "DataType", "Value")
in
    #"Pivoted Column"

 

If you don't have the datatype column you need to add the a calculated column with the following code:

if (try Number.From([Value]) otherwise "Text" ) = "Text" then "Text" else "Number"

 

then just follow the steps above using this new column


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @lightw0rks ,

 

If you have the table as presented you need to:

  • Select Data Type column
  • Transform
  • Pivot Columns
  • Use values of colum Text
  • Don't aggregate
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUfIrzU1KLQIyDJVidSBCIakVJUDKCSxghKnGCF2NMaYaYxQ1sQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, DataType = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"DataType", type text}, {"Value", type text}}),
    #"Pivoted Column" = Table.Pivot(#"Changed Type", List.Distinct(#"Changed Type"[DataType]), "DataType", "Value")
in
    #"Pivoted Column"

 

If you don't have the datatype column you need to add the a calculated column with the following code:

if (try Number.From([Value]) otherwise "Text" ) = "Text" then "Text" else "Number"

 

then just follow the steps above using this new column


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks MFelix, works great!

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.