Forum Discussion
AshleyWells
3 years agoRegular Visitor
JSON data stored in 2 lists. 1 columns header, 1 data. Need to make into a table
Hi all, I was wondering if anyone has any experience in converting multiple rows of JSON data that is stored as 2 lists, 1 as column headers and the other as the data and transforming them into 1...
- 3 years ago
Hi AshleyWells
Please add a custom column with this. Notice that there is a pair of {} around [ColumnData].
= Table.AddColumn(PreviousStep, "Custom", each #table([ColumnNames],{[ColumnData]}))Then expand the custom table column.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
v-jingzhang
3 years agoCommunity Support
Hi AshleyWells
Please add a custom column with this. Notice that there is a pair of {} around [ColumnData].
= Table.AddColumn(PreviousStep, "Custom", each #table([ColumnNames],{[ColumnData]}))
Then expand the custom table column.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
AshleyWells
3 years agoRegular Visitor
v-jingzhang that works perfectly, thanks so much!