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

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
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,214,830
Messages
6,121,839
Members
449,051
Latest member
excelquestion515

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