gpt4 book ai didi

excel - 展开 power bi 中包含列表和日期的列

转载 作者:行者123 更新时间:2023-12-04 21:42:59 24 4
gpt4 key购买 nike

我有一列包含日期和日期列表。
enter image description here
enter image description here
我需要扩展列,以便列表下的日期列表与列中的日期一起扩展。
我使用了下面的代码并获得了“Expression.Error:我们无法将 List 类型的值转换为 Table 类型。
细节:
值=[列表]
类型=[类型]"Table.TransformColumns([Custom],{{[Custom],each if Value.Is(_,type list) then _ else {_}}})生成列表的代码

= Table.AddColumn(#"Removed Blank Rows", "New end date", each let StDt = [#"Grant date #(lf)(dd/mm/yyyy)"],
根据您的代码展开列表的代码。
Table.AddColumn(#"Added Custom", "Custom.1", each Table.TransformColumns([New end date]{{[New end date],each if Value.Is(_,type list) then _ else {_}}}))

最佳答案

这会将非列表行转换为列表,以便显示箭头选项

x = Table.TransformColumns(#"PriorStepName", {{"Custom", each if Value.Is(_, type list) then _ else {_} }} )
然后使用列顶部的箭头展开。然后换类型
图片前:
enter image description here
图片后
enter image description here
完整的示例代码
let Source =  #table({"a"}, {{"10/1/2020"},{"4/1/2020"},{"6/1/2020"},{"1/1/2020"},{"10/4/2020"},{"10/8/2020"}}),
z = {"5/31/2021","5/15/2020","3/14/2019"},
#"Added Index" = Table.AddIndexColumn(Source, "Index", 0, 1, Int64.Type),
#"Added Custom" = Table.AddColumn(#"Added Index", "Custom", each if [Index]<2 then z else [a], type any),
#"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Custom"}),
// prior is just to set up sample data
x = Table.TransformColumns(#"Removed Other Columns", {{"Custom", each if Value.Is(_, type list) then _ else {_} }} ),
#"Expanded Custom" = Table.ExpandListColumn(x, "Custom"),
#"Changed Type" = Table.TransformColumnTypes(#"Expanded Custom",{{"Custom", type date}})
in #"Changed Type"

关于excel - 展开 power bi 中包含列表和日期的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71795684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com