Forum Discussion
FabvE
Nov 27, 2024Brass Contributor
Power Query: convert table type column to JSON string
Hi, I have generated a query in PQ with aggregates a column of mail adresses to the unique mails. Now the other columns are put together in one single column of type "table": When clicking on s...
- Nov 28, 2024
Hi
Add a Custom Column with:
=Text.FromBinary( Json.FromValue( [PQ_Final output] ) )
See the example on the Json.FromValue doc. page
Lorenzo
Nov 28, 2024Silver Contributor
Hi
Add a Custom Column with:
=Text.FromBinary( Json.FromValue( [PQ_Final output] ) )
See the example on the Json.FromValue doc. page