Currently bot generating separate output report based on the same single bot running days (e.g) If bot start from today & complete tomorrow based on the volume. It is generating the final output report for today &tomorrow date separately.
I need to get the output in same excel if bots running in multiple days also.
Note: This is not Multibot. Single bot only based on the volume taking one more days to complete. But generate separate output.
In Init state add a output report file name which will be set when you start the bot for example today, even the bot runs overnight, the report name and file path as set in Init state, it will be same for next day as well.
I think you should use a single fixed file path and append data instead of overwriting. use “Append Range” activity or dynamically calculate the next empty row with “Read Range” + row count, then write new data starting from there. This keeps all results in one sheet regardless of runtime duration.