Reframework Process

Hello,
I’m running a Robot with RPA, it has to process more than 100 items. Is it possible to adjust the process to handle 20 items each time?

@Jose_Pedro_Mendes

What is your input type? Is it excel or some other source?

Thanks

Well I would suggest to go with a multiple bot concept of there are large items to process around

Hi, my input is excell, built from extracted information by the bot

@Jose_Pedro_Mendes

First use Read Range activity to read Excel and output Datatable

Now Add a column as Status, Use Filter Datatable and use the Datatable filter with Completed

use For Each row activity and declare a variable for Index

Inside For each row activity place a IF condition and write as below

Index <=21

this will add first 20 records and when it successful you have write to column Status as Completed

Hope this may help you

Thanks

Thanks, i’ll do that.

1 Like

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