URGENT ! PLEASE HELP HOW DO ROBOTS CONTINUE THE SEQUENCE PROCESS

I have a project to fill out a form, the form is filled with excel data. The robot will loop according to the data in Excel. If one of the Excel columns is filled in but the data is not in the website form. The robot should have continued with the next data, but instead the robot experienced an error and stopped. I have succeeded in solving this problem.

But is it possible if the robot also does not continue processing other sequences because the data has been detected as empty in the previous sequence, then there is no need to carry out the next process?

How do you get the robot to move on to other data?

@Kia1

  1. Read Excel Data: Use Excel Application Scope to specify the Excel file and Read Range to read the data into a DataTable variable.
  2. Loop Through Excel Data: Use For Each Row activity to iterate through each row in the DataTable obtained from Excel.
  3. Check for Empty Data: Within the loop, use an If activity to check if the data in the specific column is empty. Use the condition String.IsNullOrEmpty(row("ColumnName").ToString).
  4. Conditional Processing: If the data is not empty, proceed with filling out the form on the website. If empty, skip to the next iteration of the loop.
  5. Continue Processing: Ensure that the activities for filling out the form are placed inside the “Then” section of the If activity. This ensures that if the condition is met (i.e., data is not empty), the robot proceeds with filling out the form.
  6. Repeat Steps 3-5 for Other Sequences: If there are other sequences to be processed, repeat steps 3-5 within the loop.
  7. End of Loop: After processing each row, the loop will automatically move to the next row until all rows are processed.

Hello user,

If for example you are filling data from excel file and incase data comes blank in particular data Row so you can move towards next data row.

For this you can add validation by using IF condition if particular column and its value is blank then it will mail user and go to next data row simple.

For every data row IF validation will take place due to which your process will work efficiently.

I hope this will help you in effective way.
Please let me know if my solution works for you.

Yes, same I explained in simple way.!


But I have made it like this
How can it be added or must it be rearranged?

Hi Kia,

You must have used type into activity from subaccount sequence. So before that add a IF condition as told and you know according to condition perform activites.

If currentrow value comes blank it will go in THEN.
In then it will mail the user and will go for next loop.

In Else add DO sequence simple.

Thank you.
Please let me know if my resolution works for you.

May I be given an example of a UiPath flow file or image?

Sorry I can’t contact you, I can only communicate via the UiPath forum platform

Can you share your workflow as zip so we could assist in better way.

Sorry, I can’t provide the file, only the plot. Thankyou

  1. I have excel data like this, in the “Sub Account ID” column the data is red, meaning there is no data in the form. But the robot will still check the data on the form.
  2. The robot will check whether the data is present or not in the “Subaccount sequence” section.
  3. I want if the data is not there, then the data will not continue to the next sequence, if the data is there then it can continue to the next Screenshoot sequence

I want if the data is not there, then the data will not continue to the next sequence, if the data is there then it can continue to the next Screenshoot sequence
Q: Data is not there from excel right?

Yes, that’s right
Can you help me, because I don’t understand

Hi kia i have made a demo workflow as you wanted. Please go through and let me know if it was helpful to you!

Kia_Forum.zip (9.9 KB)

Thank you.

Hello Kia,

Resolved the issue?

I have tried, the system works fine

thank you very helpful

1 Like

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