How to check if the desired text is in the cell?

Hi guys! How Can I check if the desired text is in the cell?

For example, in Excel Cell I have this : “A B C” and I have to check if this cell has “B”?

1 Like

Yah that’s possible
—Like we can use READ CELL activity and get the output with a string variable named str_output and mention the exact cell position in cell range like
“C2” if it’s a C column

I Now next to this use IF condition like this
str_output.Contains(“B”)
If this is true it will go to THEN apart where we can use writeline activity and mention like this
“B exists”

Hope this would help you
Cheers @Olek1

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.