HOW TO IGNORE WORD FROM EXCEL

CurrentRow(“Status”).ToString.Contains(“Completed”)
I want bot will ignore “completed” and move to next iteration

Hi,

Try using continue activity to skip the current row and move on to next one.

https://docs.uipath.com/activities/docs/continue

Hi @sayed.tabrez

Use the above in If Condition and use the Else part to Proceed with the other actions!

Because if the Condition met it will move to then part and if there is no activity it will skip iteration and then part proceed with the action you need!

Regards

Nor(CurrentRow(“Status”).ToString.Contains(“Completed”)) my answer

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