Convert CSV to XLS using 'ssconvert' with delimiter

8.5k Views Asked by At

I've got a CSV file with delimiter character being |, but can't really find a way to convert it to XLS that would apply the delimiter.

ssconvert -O 'separator=|' test.csv test.xls

will obviously yield with message like:

The file saver does not take options

The outcome is an XLS file with entire rows treated as one column (concatenated, like in text format) instead of spread according to given delimiter. Expected outcome is obviously properly delimited file.

It's been bothering me for a while, could anybody give me a hint?

2

There are 2 best solutions below

1
On

Does

ssconvert -O 'separator=|' test.TXT test.xls

work for you? So: .TXT, not .CSV

0
On

Unfortunately, option parameters can only be specified for the exporter, not the importer.

But you can replace the delimiter characters | with TABs, so that ssconvert recognizes columns.

tr '|' '\t' <test.csv | ssconvert fd://0 test.xls