List.contains 不使用列作为 Power 查询 M 中的第二个参数
据我所知,当 A 列和 B 列中有共同值时,所有内容都给出 F
如果 List.Contains(List.RemoveNulls( { [A] } ),[B]) = true then "T" else "F “
感谢您的帮助:)
Gives F for everything as far as I can see when there are common values in columns A and B
each if List.Contains(List.RemoveNulls( { [A] } ),[B]) = true then "T" else "F"
Thanks for the help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 powerquery 中,要检查列 a 中的每一行值是否与任何行中的列 b 匹配,
请添加列 .. 自定义列 .. 使用公式
这就是您要查找的内容吗?
In powerquery, to check if each row's value in column a matches column b in any row
add column .. custom column.. with formula
Is that what you are looking for?