how to convert csv to xlsx keeping column format as text

while converting csv to xlsx, need to keep all the format of the cell in text format

In the csv import dialog, select each column and choose Text in the dropdown list just above.

Once your csv file is imported you can check that each column is text formatted. If there are numbers they are aligned right instead of aligned left as they would be if they have been imported as numbers.

I think the correct command is (after pre-process to add double quotes around numbers):

libreoffice --convert-to xlsx:“Calc MS Excel 2007 XML” --infilter=CSV:44,34,UTF8,true test.csv

Note the “true” in the --infilter parameters.
It works for me.

Reference: Filter Options - Apache OpenOffice Wiki

Hi JBF,

thanks for reply.

But I am trying to convert csv to xlsx from command line as i need to embed it in shell script.

I am able to convert the same by following set of command:-
soffice --convert-to xlsx:“Calc MS Excel 2007 XML” file.csv

it is converting fine but the cell format gets changed to Number whereas i need text.

Well, giving all important information in the question is better. :frowning:

Is it conceivable to pre-process the csv files to enclose each field between double-quotes?

yes it can be.

i have tried the same but its not working.

like:-

file.csv has data like this

“barcode”,“0781”,“01”

“123456789012345678901”,“0781”,“01”

“109876543210987654321”,“0781”,“01”

then if i execute following command :-

soffice --convert-to xlsx:“Calc MS Excel 2007 XML” file.csv

it converts csv to xlsx but cell values gets changed to exponential values where as i need in text format

Indeed, I get the same thing in the UI. That said it works if I check the checkbox “Quoted fields as text” it works but this setting seems not be taken in account if LO is used in CLI. :frowning:

yeah…is there any way to do it