Answers for "convert xls to csv with header and footer double quotes"

0

convert xls to csv with header and footer double quotes

//First save the xls file as csv through the Excel File>Save As menu. 
//Then, run this command in PowerShell (change to your directory and file name):
import-csv C:\Users\Documents\fileName.csv | export-csv C:\Users\Documents\fileName2.csv  -NoTypeInformation -Encoding UTF8
Posted by: Guest on May-25-2021

Code answers related to "convert xls to csv with header and footer double quotes"

Browse Popular Code Answers by Language