gpt4 book ai didi

excel - 意外错误 : Operation is not valid due to the current state of the object

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

当我尝试在电源查询 [Excel] 中的文本列上运行此函数时,出现上述错误。
该列包含不同的名称,此函数检查条目中是否包含“AbbVie”、“Roche”或“Pfizer”。它返回条目中存在的列表中的名称。

    (txt as text) =>
[

create_val = (val as text,check as text, output as text) =>
let
output = if Text.Contains(val,check)
then Text.Combine({output, check},",")
else output
in
output,
final_value = List.Accumulate({"AbbVie","Roche","Pfizer"},"",(state,current) => create_val(txt,current,state))
][final_value]

最佳答案

我也为此苦苦挣扎,所以我想分享一下我是如何解决的。
我正在递归地使用自定义函数,作为实现循环的一种手段。事实证明我正在修改函数定义中的变量,即调用函数的变量。通过声明局部变量,该函数按预期工作。

关于excel - 意外错误 : Operation is not valid due to the current state of the object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64442500/

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