Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从分布在多个网页的表中提取数据。我正在尝试每页获取数据并写入同一个集合。为此,我在这些页面的输出中给出了相同的集合。
问题是数据在集合中被覆盖,而不是被添加。
嗯,它就是这样工作的!当您将数据读入集合时,先前的数据将被覆盖。这与其他数据项相同:)
解决方案很简单——先将数据读入临时集合。
之后,使用动作:
object: Utility - Collection Manipulaiton action: Append rows to collection
这会将行从您的临时行连接到主要行。