transform json to table friendly format.

trivender

New Member
Joined
Feb 23, 2017
Messages
3
Hi Team - Using powerquery a web api returns json in below format

{
"responses": [{
"1": {
"id": "1",
"submitdate": "1980-01-01"
}
}, {
"2": {
"id": "2",
"submitdate": "1980-01-01"
}
}, {
"3": {
"id": "3",
"submitdate": "1980-01-01"
}
}]
}
which I am not able to convert to table using powerquery user interface interactions. I guess if some how I can convert it to below json format then powerquery will easily understand it and convert it to table. Please let me know how can I transform above json format to the below one.


{
"responses": [{
"id": "1",
"submitdate": "1980-01-01"
}, {
"id": "2",
"submitdate": "1980-01-01"
}, {
"id": "3",
"submitdate": "1980-01-01"
}]
}
Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi
Try
Code:
let
    source = Json.Document(File.Contents("C:\Path\1.json")),
    listValue = source[responses],
    toTable = Table.FromColumns({listValue}, {"data"}),
    getIdCol = Table.AddColumn(toTable, "RecNum", each Number.From(Record.FieldNames(_[data]){0}), type number),
    getRecord = Table.AddColumn(getIdCol, "record", each Record.Field(_[data], Record.FieldNames(_[data]){0}), type record),
    expandRecord = Table.ExpandRecordColumn(getRecord, "record", {"id", "submitdate"}, {"id", "submitdate"}),
    return = Table.RemoveColumns(expandRecord,{"data"})
in
    return
Regards,
 
Upvote 0

Forum statistics

Threads
1,215,477
Messages
6,125,030
Members
449,205
Latest member
Eggy66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top