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?