I’m trying to copy one workbook into a different one. There are over 9k rows…
I’m using read Range and Write Range activities… every time I try running it throws an error (“RemoteException wrapping System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.”)
the workbook starts at “A7” and goes into “A1”… any ideas how to make it work?
When using read range activity there are two things need to consider two things
You can provide the range as starting cell : ending cell Ex: A1:A7 so that it reads the data from A1:A7 and stores the data in a output variable
if you wan to read the entire sheet then you can simply keep “” in the range field
In the screenshot you mentioned the value in the range as “A7” in the Read Range activity. Try to give the range as “A1:A7” or just keep double quotes. Try executing
Also, run the process in debug mode to know exactly at which activity the issue was occuring
“A7” is the starting range for read range (the report starts there), and “A2” is the start for the write range activity. thats where I need to put the rows
can you please check how many number of rows are read from read range activity? In other way move your log message before the write range and see it returns any rows count.