我已经创建了一个自定义列,并且我希望该列是可扩展的。如何使其可扩展?
当我单击图像中的错误时,它显示以下错误
** Expression.Error:我们无法将Table类型的值转换为Function类型。
详细信息: 值=表 类型=类型**
谢谢
答案 0 :(得分:1)
TransformColumns()是您的朋友。
BICCOUNTANT向我们展示了,您可以使用它来扩展列
truncate mytable
表格
Table.TransformColumns(Source, {{“Column1”, each if Value.Is(_, type list) then _ else {_} }} )
并列出
Table.TransformColumns(Source, {{“Column1”, each if Value.Is(_, type table) then _ else #table({“Column1”}, {{_}} ) }} )