If you want to read/write a specific range here, you should use the read/write range activity. Since the main purpose of the cell reading/writin activity is to read/write a specific cell, it expects row and column numbers from you.
we can calculate the Range Information in advance e.g. DataTableVar.Rows.Count
As mentioned above, with an A1 B1, LetterDigit Range we are driven by the datatable used for the writing and can restrict it also before writing to Excel
Number of rows does not cause any error, if you have a datatable having 10 rows and 3 columns you can write it from cell “A1” on the other hand if you would be having 100 number of rows and 3 columns still you can write it on cell “A1”
The end range is not required, you have to give only the initial point.
Understood. A tip on the subject has also been given above. To be more descriptive, follow the steps below.
1-First of all, read your entire input excel without specifying a range and assign it to a table (dt)
2-Extract the data you want by specifying the range you want to read. In the first case, the number of rows of the table you are reading will give you the dynamics of the cell size.
3-Do the printing process by specifying the excel you want to move your range table that you extracted to the table.