excel Expression.SyntaxError:应为令牌Eof

7qhs6swi  于 2023-11-20  发布在  其他
关注(0)|答案(1)|浏览(318)
let
    Source = Folder.Files("C:\Mobility_reports_inputs_files"),
    #"Sorted Rows" = Table.Sort(Source,{{"Date modified", Order.Descending}}),
    #"Filtered Rows" = Table.SelectRows(#"Sorted Rows", each Text.StartsWith([Name], "Mob_repc") or Text.StartsWith([Name], "mob_repc")),
    #"Kept First Rows" = Table.FirstN(#"Filtered Rows",1),
    Navigation1 = #!"#""Kept First Rows"" first rows 0 [content]"
in
    Navigation1

字符串
在上述程序中,由于错误而失败
第一个月
试图解决但仍面临问题。

3okqufwl

3okqufwl1#

let
  Source = Folder.Files("C:\Mobility_reports_inputs_files"),
  #"Sorted Rows" = Table.Sort(Source,{{"Date modified", Order.Descending}}),
  #"Filtered Rows" = Table.SelectRows(#"Sorted Rows", each Text.StartsWith([Name], "Mob_repc", Comparer.OrdinalIgnoreCase) ),
  #"Kept First Rows" = Table.FirstN(#"Filtered Rows",1),
  Navigation1 = #"Kept First Rows"{0}[content]
in
  Navigation1

字符串
最后一步你想做什么?我在上面猜到了。

相关问题