how to use copy paste range activity, can you pls help I am trying to copy entire csv file to excel .xls file
Hi @r0818 - You can achieve this with simple activities
- Read CSV activity to read CSV data
- Write Range activity to write the data to excel file
Note: It is better to maintain xlsx file instead of xls file
Please check the below workflow
SampleWorkflow.zip (2.7 KB)
but its not copying headers from CSV. I checked has headers
In read csv and in write range in both the places please check the checkbox of add headers in the properties. Then you would see the headers
Cheers
Hi @r0818
You can try this way,
- Read the entire csv file using read range csv activity. “Inputpath.csv” YourDT —> ReadDT
- Next Write range activity put the file path like “Yourpath.xls” Note: add headers enable
- Finally your csv file write to xls.
Regards
Gowtham.K