How to convert csv file to excel with the precaution it can not be corrupted in uipath

How to convert csv file to excel with the precaution it can not be corrupted in uipath.

1 Like

Hi @Swap_Sboy

The most reliable way to do it would be,

use a read csv activity to read the data
and use a write range activity to write the data onto an excel file.

1 Like

Hi @Swap_Sboy,
Use read csv to read the data as a datatable. Then write the datatable to a new excel using write range.