I have an excel sheet with data that needs to be automated to fill a web form.
I was able to do this with no problem. But the problem is this:
The Webform (if specific data is already been entered) will tell me that this specific data has already been put in and will not go to the next row on excel.
Is there a If/Then Statement (For Example:)
If the data has already been entered in the past, then skip to the next row on excel.
@Caleb_Greenberg , i just change subject and removed “URGENT” word. I have’t sean any urgency in this and lot of helpful search is already available with similar cases in forum. Hope you understand and have a better search… you will definitely get answers.
Please use Get Text activity. Inside Get Text Activity, you will have a StringVariable.
Your StringVariable will have following value from GetText output.
StringVariable = "Patient with the same Social Security No. or Patient ID already exists. Patient cannot be created/updated "
Use following code in If condition…
InStr(StringVariable,“already exists”)<>0
Above line of code will decide if value already exists or not.
Hope my inputs are useful.