I am working on the following process where the robot first reads a range of cells from a file and stores them in the same variable, then those values must be filtered to another file. The question is how to filter with a variable that has more than one value (eg, 12,000, 18,000, 20,000). The variable “Objectives” has more than one stored value
another method to filter the data:
instead of excel filter activity you can use read range to get the all the data(dtresult-DataTable).
after that you can filter using select statement
dtresult=dtresult.select(“[columnname] in (‘A’,‘B’)”)