=> Use the Use excel file activity and give the path of the excel file.
=> Inside use excel file activity insert the For each excel row activity to iterate the excel rows.
=> Inside for each insert the If condition and write the below condition
- Condition -> Currentrow("survery").equals("Yes") and Currentrow("address").equals("Yes")
=> In then block give the break activity to break the loop. When the condition meets it will break the loop.
Check the below workflow for better understanding.
I am getting a message from the website and I am extracting the message after the condition met.
Now I want to write the message against that name in the column D.
Its able to meet the condition. and also looping the names only which met the condition. now I have used these names in a website and we are getting a pop up message which needs to be captured for the validation purpose.
Now I want to write the captured message against the name which was provided for that instance.
I have used add data row activity and write range but its writing continuously. But I need to write the captured message against one which name we have loaded. I want to skip the rows which do not meet our condition for writing the message.
I have highlighted the rows where I need to write the message.