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
gnair21
New Member

How to Convert Raw data to Structure data

Screenshot 2023-06-05 021200.png

2 REPLIES 2
slorin
Super User
Super User

Hi, 

let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WUtJRiolxVIrViVbyS8xNBXKDwRznnMTiYiDPAswLTk0uyczPA/IhSjPyk5IyU0HyzmA+2BQnZFO8UUyxBPM880pSi1KLS4ACvmABx3SQUiMDhBnOyGZ4gDmJEEXGYE4x3CFOaA4JzsxLByKl2FgA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Column 1" = _t, #"Column 2" = _t]),
Proper = Table.TransformColumns(Source,{{"Column 1", Text.Proper, type text}}),
Group = Table.Group(
Proper,
{"Column 1"},
{{"Data", each Table.PromoteHeaders(Table.Transpose(_))}},
GroupKind.Local,
(x,y) => if y[Column 1]="" then 1 else 0),
Formatted_Data = Table.Combine(Group[Data])
in
Formatted_Data

 

Stéphane

wdx223_Daniel
Super User
Super User

wdx223_Daniel_0-1685924470896.png

import your date without headers, then try this code.

= Table.Combine(Table.Group(Source,"Column1",{"n",each let a=Table.Skip(_) in Table.FromRows({{[Column2]{0}}&a[Column2]},{"Category"}&List.Transform(a[Column1],Text.Proper))},0,(x,y)=>Byte.From(y=null))[n])

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
Top Kudoed Authors