Forum Discussion
Power query extract value of a json record
rsantos1,
Click the expand button on the upper right corner of the column header, you are able to extract values from the Record column.
There is a similar thread for your reference.
http://www.dutchdatadude.com/loading-multiple-json-files-using-power-query/
Regards,
Lydia
I don't want to expand the json value in collumns, I want the raw json value like {"option", ...} and insert in each row, that's the clhallenge..
- Anonymous7 years agoNot applicable
rsantos1,
I am not very clear about your requirment. Could you please share sample data and expected result here?
Regards,
Lydia- rsantos17 years agoNew Member
Hi,
Source json:
[{"name" : "teste", "request_type": "POST", "url": "www.example.com", "body": {"test1": { "log": { "lang": "", "log2": "", "device": "", "state": "Unknown" }, "form": "simple", "gui": "221307"}, "id222": "341735", "size": "302x170"}}]In the collumn body, I want all the content of the json text, not split into collumns, just all the value
Thank you
- Anonymous7 years agoNot applicable
rsantos1,
I notice your column contains nested Record. Please add a custom column using code below, and check if you can expand values from List column.Record.FieldValues([Column1.body])
Regards,
Lydia