大家好,PowerQuery专家,
我正在尝试将PowerQuery公式从Power BI PowerQuery迁移到Excel PowerQuery,我本以为两个PowerQuery实现是相同的,但不幸的是,要么不是这样,要么是我遇到了一些本地化问题(法语和英语)请找到部分错误的查询和我在Excel中得到的错误信息。
= Table.Pivot(#"Expanded ""tags"" from Records",
List.Distinct(#"Expanded ""tags"" from Records"[name]), "name", "value")
Expression.Error: Sorry ... We were unable to apply the < operator to the List and List types.
Details :
Operator=<
Left=[List]
Right=[List]
这里是不包括API的完整代码指向错误行的键:https://gist.github.com/EricLacroix/e6313e893f3f107f22eccfb79cddadb7#file-gistfile1-txt-L81
发布于 2021-03-09 23:52:46
最后,
在询问同事之后,我们删除了在执行pivot操作(例如:记录、数组)之前存储在列中的具有某些完整类型的所有剩余列,然后解决了这个问题。
https://stackoverflow.com/questions/66483920
复制相似问题