Save Excel sheet as .CSV utf 8

Hi all,

Can anyone help me how to create a Excel file as
.CSV UTF-8 format.

I have my input data in datatable format. I want to write that data in new excel as format - .CSV UTF-8 format.

@Rreddy
Use the Read Range activity which creates a datatable then use the Write CSV activity to write the datatable into a csv file.

Hi @Krishna_Raj I want to write it as - .CSV UTF-8 format.

Hi @Rreddy
Check the below thread

Hope it helps!!

Hi @pravallikapaluri currently I’m checking this one. Will update once it works.

@Rreddy

After running the process Check the Csv file by opening the csv file and click on "File " and then “Save as” Then you find in what format the csv file is saved

Hope it helps you

@Rreddy
image
check encoding with different Unicode, UTF-7, UTF-8, UTF-16, UTF-32, ASCII

@Rreddy

  1. use output datatable activity to convert datatable to string

  2. use write text file activity to write string variable from step (1) to a text file, set encoding = utf-8 !!
    set filename = your csv file path

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.