Skip Multiple keywords data from excel by config file

Hi friends,

Want to passing these data from config.
image

Data looks like below and want to write skip for RETRY, TRY AGAIN and it can be increase or decreased.

It is working if there is 1 condition but need to change in this code. I don’t know what need to change here.
Variable1.Contains( in_Config(“Retry”).ToString.ToUpper)

Pls suggest
RetryQuery.xlsx (8.0 KB)

just reverse the code
in_Config("Retry").ToString.ToUpper.Contains(Variable1.ToString.ToUpper)

Thanks @AkshaySandhu . I will try your logic as well.

I tried this logic and working fine.

strArr->array.string variable
in_Config(“Retry”).ToString.Split(","c).ToArray

If found wrong approach then let me know.

It seems like you are checking static string in_Config(“Retry”) with static string “Do not try again”. Is this meant for testing only ?

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