如何在 Power BI 中引用 table 中的 table
How to refer a table inside a table in Power BI
我发布这个是因为 Google 没有向我展示任何关于此的指南或参考,我浪费了一个多小时来寻找解决方案。
我从数据库中提取了 table。我通过 'Invoke Custom Function' 添加了一列。这个函数returns一个table类型。我想直接在父 table.
中查看此 table 类型数据的列
Table 函数返回的类型
嵌套 table 中的列。
我希望嵌套 table 中的列直接显示在父 table.
上
以下解决问题。
Table.ExpandTableColumn(table as table, column as text, columnNames as list, optional newColumnNames as nullable list) as table
我发布这个是因为 Google 没有向我展示任何关于此的指南或参考,我浪费了一个多小时来寻找解决方案。
我从数据库中提取了 table。我通过 'Invoke Custom Function' 添加了一列。这个函数returns一个table类型。我想直接在父 table.
中查看此 table 类型数据的列嵌套 table 中的列。 我希望嵌套 table 中的列直接显示在父 table.
上以下解决问题。
Table.ExpandTableColumn(table as table, column as text, columnNames as list, optional newColumnNames as nullable list) as table