Please help to guide the activity for the read and write data to file csv
First : I need to read the source file csv Name ABC.xlsx by start Row and column number to first free Row and Column number Or copy to fist free Row and Column number (-)
Next : Write destination file Excel Name DEF.xlsx on the first fee Row and Column number
Does the data you want to Copy from the ABC Sheet start always at the 11th row ?
If so, when using Read Range Actvity you can Set the Range as A11 with Add Headers Unchecked. You will get an Output as Datatable.
Then, It does seem that you would want to Append this Data to the Sheet DEF, in that case, you could use Append Range Activity with the Datatable value from the Output of Read Range Activity of ABC Sheet.
@Chanwit , You need to use the Datatable Type variable not the String variable. The Output of Read Range Activity needs to be used in place of AbcDT. I think it’s dt in your case.