如何获取blueprism中的集合计数

how to get count of collection in blueprism

我正在努力从 Blueprism 中的集合变量中获取行数。实际上我已经连接了 MS access 数据库和 运行 一个查询,我将查询结果存储在一些(X)集合变量中。现在我需要知道有多少行被拉了。有人请帮我从集合变量中获取行数。

你检查过对象"Collections"了吗?这是BluePrism公司开发的标准。当您滚动浏览 "action" 块中的对象列表时,它是最后一个对象。

动作名称是来自标准 Blue Prism "Collections" 对象的 "Count Rows"。

Have you checked the object "Collections"? That's the standard one that is developed by BluePrism company. It's one of the last objects, when you're scrolling through the list of the objects in "action" block.

Action name is "Count Rows" from standard Blue Prism "Collections" object

有一点不同,此操​​作需要输入 collection 的名称,而不是整个 collection。如果您的 collection 被命名为 [Coll1],那么作为输入使用 Coll1,它应该可以工作。真是奇怪的设计

如果您的 collection 名称中有一个 space,例如 Collection 1,那么您需要在其周围加上引号。例如“Collection 1”

请检查内部对象下的集合。在那里你可以找到计数行。