: How do i filter multiple rows in Data Collection?

manzur

New Member
Hi BluePrism Community,
I have a collection with "n" rows I need to dynamically filter this collection(say I have 10 rows with column Key row1=1,row2=2...rown=n).So i have pass 1,2 it should create a collection with rows equal to row1 row2.Please provide me with example
 
Last edited:

NPoornima

New Member
Use object: Utility - Collection Manipulation
Use Action in it: Filter Collection

Expression: "[row1]=1 OR [row1]=2"

Output will return collection with row1 which has 1 or 2
 
Top