Blue Prism - 如何使用 NOT 运算符过滤集合

发布于 2025-01-11 07:20:44 字数 255 浏览 5 评论 0原文

我需要过滤具有“HoldingSubholding”列的集合,该列可能有很多不同的值。我需要除具有值“A”的行之外的所有具有值的行。

如何过滤集合? 我想使用 EQUAL NOT,我该怎么写呢?

"HoldingSubholding =NOT 'A'"

在此处输入图片说明

I need to filter a collection that have "HoldingSubholding" column, that can have lot of different value. I need All the rows with the values except the rows that have value "A".

How can I filter the collection?
I would like to use EQUAL NOT, how could i write that?

"HoldingSubholding =NOT 'A'"

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌伤浅笑 2025-01-18 07:20:45

“[列名称] <>'A'”

<>与= 完全相反,= 允许您取消选择或过滤掉列中不相关的数据。

“[Column Name] <>’A’”

<> is exact opposite of = which allows you to deselect or filter out non relevant Data in columns.

花桑 2025-01-18 07:20:44

有一个来自数字交换、公用事业集合操作的 VBO。它有一个称为过滤集合的操作 - 输入集合和过滤表达式“HoldingSubholding <> 'A'”

或者您可以使用循环阶段来循环集合,并使用决策阶段来检查条件 [Collection.HoldingSubholding ] <> “一个”

There's a VBO from the digital exchange, utility-collection manipulation. It has an action called filter collection- Input the collection and the filter expression "HoldingSubholding <> 'A'"

Or you can use a loop stage to loop through the collection, and a decision stage to check the condition [Collection.HoldingSubholding] <> "A"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文