通过Web URL将数据从JSON文件导入Excel

时间:2017-12-17 21:28:23

标签: json excel powerquery

我正在使用From Web标签功能查询下的Data通过网址将数据从JSON文件导入Excel。

大部分数据都是正确的,但有些数据的格式为[List],与单元格值相同

所有[List]数据的格式为aaa|bbb|ccc,即管道分隔

enter image description here

应该是这样的

enter image description here

是否可以正确显示数据?

由于

1 个答案:

答案 0 :(得分:1)

是的,转换列。如果值是列表,则将值与“|”组合作为分隔符,例如:

let
    Source = #table({"Sector"},{{"Non-profit"},{{"Business & industry","Govenrnment"}}}),
    TextCombined = Table.TransformColumns(Source, {{"Sector", each if _ is list then Text.Combine(_,"|") else _, type text}})
in
    TextCombined