You can easily do it with two activities in UiPath Studio…
in order to read the excel sheet, you can use Read Range activity. If you do a search for this you will have two activities in the same name… One is under Excel and one is under Workbook…
If you want to open the excel sheet and do the reading, then you can use the Read Range under excel. If you want to read the excel without opening it in your screen, then you can use the Read Range under workbook
In either one, there is a property to set the range you want to read data from. There you can specify which columns and which rows should be included for the reading.
The reading will add the data into a Datatable variable. You can specify that in the Read Range activity, output property.
Next, you can use the Write Range activity. Again its same as the read range. As the input for the Write Range, you can specify the datatable variable you created for the Reading
Also if you have some column names as empty you have to use Read range activity with “Add Headers” disabled so that the first row won’t be considered as the column name and you will get exactly what it is. Then while writing it to another sheet use “Write Range” activity with “Add Headers” disabled.
Thanks so much for your response. I tried to use the read range under excel as the file I am reading is already open. That seems to work fine. I encounter a problem when I try to write range into another workbook. This time I used write range under workbook because I am happy enough for the data to be copied without opening the file.
The error I get is saying that the process cannot find the workbook to write to because it is being used by another process.