How to skip rows and avoid invalid data in Web and Excel Automation

I have Excel file to automate in Web automation…In that Excel file there will be blank cell and invalid data

Hi @sathya_auto

Try this

String.IsNullOrEmpty(CurrentRow("Column").ToString) OR CurrentRow("Column").ToString.Equals("Invalid Data") OR CurrentRow("Column").ToString.Equals("Invalid Data")

Hope it helps!!

thankyou got it works fine

1 Like

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