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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
gnair21
New Member

Convert Raw data to structure Data

Hi Team, 

 

Need your help in converting below sample data into Raw data. 

raw data to left and actual data to need ed to right how to do user power BIraw data to left and actual data to need ed to right how to do user power BI

1 ACCEPTED SOLUTION
v-xinruzhu-msft
Community Support
Community Support

Hi  @gnair21 

You can put the following code to Advanced Editor in power query

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("XY67DsIwDEX/JXMHBAuMbRYQjyViSjO4rZUENamUx8Dfk1ggqkpe7rF9dKVkrGF9H+00GQjJAFONZA9wWLjIAV4E+AwxFnKkJHBMdvElt5TNMgwW654bLHeVkfYGXkNYK6/ZfcFPeaJ08QkDxlTAPUc7Emx1fdnv/sJnx9e2s3UzvGF9fNg07DYNhfW6DFPqAw==", 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", type text}}),
    #"Added Conditional Column" = Table.AddColumn(#"Changed Type", "Custom", each if [Column1] = "" then [Column2] else null),
    #"Filled Down" = Table.FillDown(#"Added Conditional Column",{"Custom"}),
    #"Pivoted Column" = Table.Pivot(#"Filled Down", List.Distinct(#"Filled Down"[Column1]), "Column1", "Column2"),
    #"Removed Columns" = Table.RemoveColumns(#"Pivoted Column",{"Custom"})
in
    #"Removed Columns"

Output

vxinruzhumsft_0-1685941675403.png

 

Best Regards!

Yolo Zhu

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

 

View solution in original post

1 REPLY 1
v-xinruzhu-msft
Community Support
Community Support

Hi  @gnair21 

You can put the following code to Advanced Editor in power query

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("XY67DsIwDEX/JXMHBAuMbRYQjyViSjO4rZUENamUx8Dfk1ggqkpe7rF9dKVkrGF9H+00GQjJAFONZA9wWLjIAV4E+AwxFnKkJHBMdvElt5TNMgwW654bLHeVkfYGXkNYK6/ZfcFPeaJ08QkDxlTAPUc7Emx1fdnv/sJnx9e2s3UzvGF9fNg07DYNhfW6DFPqAw==", 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", type text}}),
    #"Added Conditional Column" = Table.AddColumn(#"Changed Type", "Custom", each if [Column1] = "" then [Column2] else null),
    #"Filled Down" = Table.FillDown(#"Added Conditional Column",{"Custom"}),
    #"Pivoted Column" = Table.Pivot(#"Filled Down", List.Distinct(#"Filled Down"[Column1]), "Column1", "Column2"),
    #"Removed Columns" = Table.RemoveColumns(#"Pivoted Column",{"Custom"})
in
    #"Removed Columns"

Output

vxinruzhumsft_0-1685941675403.png

 

Best Regards!

Yolo Zhu

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

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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