This is sample file, if Col A , Col B processed and stored in Col C
In between any error occurs or in between execution stops, the execution should start from next row i.e, here in example 3rd row how to do.
I tried using changing range in read range activity but its not working.
What changes I need to do.
Please help.
Excel file has say 50 records. I’ve procesed 10 records and updated as “Processed”.
Suddenly error occurred and execution ended.
Again I’ll run my workflow, execution starts from row 1 .
This should not happen , I need to execute from where the execution stopped .
you can use a try catch and then the continue activity to carry on when an exception occurs or you can filter your Datatable that comes out of the read range to only contain rows that do not contain processed in column c
Have an if at the beginning of the loop saying if Column C = “Processed” then Continue. This will skip all iterations already done and leave the automation at a place where it hasn’t processed that row.
RE Framework is overcomplicated overkill. Yes, use a queue. But write your own automation with error handling etc because it will be much simpler and easier to understand than REF.
Hey,
You can apply the condition like
In for each row activity
If row(“Col C”). Tostring. Equals(“Processed”)
In then condition you can keep continue activity
And in else condition you can keep all actions
Thanks
You said you can’t use Orchestrator, so can you use a database? Create a table and add a status column, update it as it is processed, and look at this table every time it is processed.
Even if you say we can’t do this, use excel as a table.
You can also use REF without an orchestrator by converting it to datarows.
If you want to continue without REF.
Read Excel
Filter out the unprocessed in column C.
Start with a loop.
At the end of the loop, write “processed” on this line.