Forum Discussion
Anonymous
5 years agoNot applicable
Duplicate rows when expanding JSON list
Hi, I'm having some problems to expand a list from a JSON document in Power Query. Look this figure: The columns dimensions and dimensionsMap have just one value. The column timestamps ...
- 5 years ago
You can add a custom column with a formula like this to combine those lists into a table. You can then expand that table.
= Table.FromColumns({[dimensions], [dimensionsGroup]})
Pat
mahoneypat
5 years agoMicrosoft Employee
You can add a custom column with a formula like this to combine those lists into a table. You can then expand that table.
= Table.FromColumns({[dimensions], [dimensionsGroup]})
Pat