Hi ,
I can see that you are using for each loop
If the list or array that your are iterating through is of string type , don’t forget to change for ecah loop argument type to string
First please check whether item is having any value or not
If Not string.isnullorempty(item) and string.tolower.trim.contains(“rpafirst”)
whenever you use contains method
Please use as
String.tolower.trim.contains(“rpafirst”)
This will eliminate mismatch issues due to case sensitive and spaces
Okay , once you use for each row loop
Inside the loop , you might be using get row item activity to read a particular column value in whichever the column you are thinking the data will be “RPAFirstjob”
For this get row item activity the output will be string variable ex: str1
Now use if condition
If
Str1.trim.tolower.contains(“rpafirst”)
Then