I need to convert some xls files into xlsx files. I can successfully convert one xls file into xlsx by running this command into cmd prompt (windows):
ssconvert inputFileName.xls outputFileName.xlsx
(ssconvert is a Gnumeric's command-line utility…
I'm trying to import data (.ods file) and I know how to import .csv, .xls etc. but I strand all the time. I tried it with the package Gnumeric but R tells me that the required program 'ssconvert' cannot be found.
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…
I'm using ssconvert in Gnumeric to convert a bunch of ODS files to CSV files with the command:
ssconvert -O 'separator=; quoting-mode=never' "f.ods" "f.txt";
which works out great ... most of the time. Sometimes, there are cells where the user has…
I have a simple .csv file.
Is it possible to convert it to .xls using the command line tool ssconvert?
I would also need to specify the name of the sheet.
Due to commas within cell values, I am not able to use the ssconvert utility for .xls(x) to .csv conversion.
Is there a possibility to create tab-separated values directly from xlsx with ssconvert (command line spreadsheet format converter)?…
I have a text file (abc.txt) which will be having the file name along with the path which is to be converted to .csv. Below is the script I wrote:
{while IFS= read -r f ; do
filename="${f%.*}"
ssconvert ${filename}.xls ${filename}.csv
done <…
I have this working, using Gnumeric's ssconvert:
ssconvert --merge-to=merged.xls test1.csv test2.csv test3.csv
It happily imports formulae, such as =MIN(G2:G4) correctly.
The problem I have is with off-sheet references.
How do I, with the above…
I am trying to convert the .xlsx file http://www.eia.gov/forecasts/steo/archives/mar14_base.xlsx into a .csv, but it seems that the .xlsx contains formulae that link to a local file that I don't have (the creator of the file must have forgotten to…
I am trying to convert a simple csv file that contains a date format as d.m.Y to an excel file using ssconvert but ssconvert changes the date format to d/m/Y
The command below without option on the format is changing the date format of the xlsx…
I'm looking for the way to specify a field format when converting an .xlsx file to csv using ssconvert tool on linux.
I want this information because actually, I have a field that is in floating point type but after conversion, it comes as a…
I am using ssconvert to convert xlsx to csv. One of the column has date field so when I convert it into csv date column value has converted into YYYY-MM-DD
Input:
Name Date
Test 05/08/2021
Command:
ssconvert test.xlsx …
I need to convert a lot of XLSX files to CSV, but each file has tabs, which must be converted to individual files if they have data in them.
In addition, I need to convert only those tabs that follow a pattern in their name, for example, "Tab1".
So…
I am attempting to convert an Excel file (test.xlsx, created in Office Professional Plus 2013) into either CSV or TXT format using SSCONVERT.
Using the command line, with and without identifying the importer (Gnumeric_Excel:excel_xml).
In either…
I am using ssconvert (Gnumeric) to convert large Excel files into separate CSV files. Most files work, however with some of the larger files with additional formatting the process dies abruptly and says 'killed'.
ssconvert -S '/tmp/inputfile.xlsx'…