ssconvert

How to prevent `ssconvert` recalculating Excel file before conversion?

孤街醉人 提交于 2019-12-12 06:31:24
问题 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 paste as values instead of as formula) so each time I use ssconvert it tries to recalculate the formula, which fails hence I can't get the data: ssconvert --export-type=Gnumeric_stf:stf_assistant -O "locale=C format=automatic separator=, eol=unix

batch script - run command on each file in directory

懵懂的女人 提交于 2019-11-27 19:19:08
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 that can convert between different spreadsheet file formats) I'd like to write a batch file that FOR EACH file in a specified directory runs the command I wrote above, using the current file name both for input and for output filename. For example, if I have this set of files: c:\directory\file1.xls c:\directory\file2.xls c:\directory\file3.xls the

batch script - run command on each file in directory

强颜欢笑 提交于 2019-11-26 19:49:53
问题 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 that can convert between different spreadsheet file formats) I'd like to write a batch file that FOR EACH file in a specified directory runs the command I wrote above, using the current file name both for input and for output filename. For example,