How to split JSON columns in Power BI
问题 I have imported JSON data from Hive database. The structure looks like the attached. JSON data has been dumped to Hive without normalizing. Is it possible to parse the data?. For example, in the attached image, the mentionedlocations column has some places mentioned and I want them to be in separate rows. 回答1: You can use the Json.Document function to read the column as JSON. I'd suggest creating a custom column with this formula: Record.ToTable(Json.Document([mentionedlocations])) and then