Hi
Hope we have the datatable obtained from Excel with Read Range activity, named dt
—now use a assign activity and mention like this dt = dt.Select(“[Type] = ‘Apple’ AND [Serial] = ‘3’ AND [Buyer] = ‘Paul’ OR [Buyer] = ‘Charlie’ OR [Buyer] = ‘James’ “).CopyToDatatable()
Now the datatable will have only the data that matches your condition
Cheers @junnieset
To elaborate, the data in the row (apple and 3) I will have to do data entry somewhere and then I will copy the column filtered which is Paul, Charlie and James into a clipboard.
Fine
You were almost done
The variable dt should be obtained from READ RANGE ACTIVITY and not from EXCEL APPLICATION SCOPE
So that the datatype of dt variable will be SYSTEM.DATA.DATATABLE
I hope you have got the variable from EXCEL APPLICATION SCOPE kindly delete that and get from READ RANGE ACTIVITY