【发布时间】:2020-12-28 14:57:31
【问题描述】:
我是 Power BI 的新手,所以我尝试了不同的方法将我的 JSON 文件转换为表格,但到目前为止没有成功。
{
"Family": [
{
"Father": "F1",
"Age": 50,
"Mother": "M1",
"MAge": 49,
"Children": [
{
"Name": "C1"
},
{
"Name": "C2"
}
]
},
{
"Father": "F2",
"Age": 55,
"Mother": "M2",
"MAge": 53,
"Children": [
{
"Name": "Cc1"
},
{
"Name": "Cc2"
}
]
}
]
}
我正在尝试将其转换为下表
Father Age Mother MAge
F1 50 M1 49
F2 55 M2 53
我尝试过转换表和转置,但它不起作用我总是收到类似的错误
Expression.Error: 我们无法将 Record 类型的值转换为类型
【问题讨论】:
标签: json powerbi powerbi-desktop