'Convert XLS' is 10-20 times faster than using Excel. It also allows for the saving and restoring of complex 'conversion jobs'. Specify a 'conversion job' within the command line or Windows scheduler and rest easy.
Power users: Command line capability is fundamental to ALL of our software tools. Demo batch files are installed ready for testing and modification. We are always here to help you implement our software.
Moving or deleting files while converting Excel files is no problem at all. This allows for easy, unattended conversion of whole folders.
If you need to manipulate Excel, CSV, TXT file data, 'Convert XLS' comes with numerous features and specialized processes including:
More info on specific Excel file conversions
Many CSV manipulation features are included:
More info on specific CSV file conversions
Special Promotion: Buy 'Convert XLS' and get
'Text to Excel Wizard',
'Convert Doc',
'Convert Image'
and
'Convert PowerPoint'
free!
NOTE: A CSV file can be any character delimited file, see
CSV File Definition
for details.
Do you need software to convert Excel To CSV
(or convert CSV to Excel)?
If so, we got just the tool you need. 'Convert XLS' can convert XLS to CSV (as well as XLSX, a fixed width text
file, HTML or XML) 10 to 20 times faster than using MS Excel. You can specify the delimitation character used
in your CSV file (typically a comma, but tab and | are popular too). Furthermore, Unicode and other text encodings
(ASCII, ANSI, UTF8 etc.) are supported.
Our tool does not need MS Excel, although you can optionally specify to use it. This can
assist in security for those planning on using a server.
All our conversion tools allow you to automate the process by using:
If you click the ADD button, a
'Conversion Item' is added to the 'task list' at the bottom of the user
interface. You can add as many 'conversion tasks' as you want, and
save the 'Conversion Job' file for use at a later time. See
the File menu for saving and restoring 'Conversion Jobs'.
'Convert XLS' can be especially helpful if you require complicated
file conversion jobs done regularly. By saving and
recalling a conversion job file, 'Convert XLS' quickly remembers
all the file conversion tasks and their details.
Note: The same 'conversion job' file
discussed above can be specified in the command line by using the /J
switch. For example:
ConvertXLS.exe /J"C:\Conversion Jobs\Convert-XLS-to-CSV-Command-Line.SII"
It is the best XLS to CSV conversion tool you've never used... till today!
Click here to download a free trial.
NOTE: After installation, you can find simple batch files (XLStoCSV.bat and XLSXtoCSV.bat) for quick and easy usage by going to Start\All Programs\Convert XLS\Example Batch Files. These will work without modification provided the installation was in the default folder. Email us at if you have any questions or need additional examples. We will get you up and running fast!
Although we'll discuss the use of the command line here, it's only to give you a taste. For the full, accurate, and up to date information see the 'Convert XLS' command line documentation. If you have trouble running these examples see Helpful Hints For Creating a Command Line.
There are two approaches to using the command line:
A 'Conversion Job' is easily built using the 'Convert XLS' graphical user interface. All the details of the job are saved in a single conversion job file (e.g. 'c:\myjobs\Do-Multi-Step-Conversion.SII). Specifying a conversion job file with the command line is very easy by using the /J switch. You can have hundreds or thousands of tasks specified in the conversion job file, all of which will get executed in one fell swoop. For example:
ConvertXLS.EXE /J"D:\Job Files\Convert XLS to CSV.SII"
Specifying a single conversion task requires a bit more effort, but does not require
the prior creation of a 'Conversion Job' file.
The first example below shows how to convert a single
worksheet within an Excel file to the most popular form of a CSV file, a comma delimited file as
well as a Tab Delimited File (TSV). It can be easily modified to convert from an Excel file to
any character delimited CSV file. Also in the first example we'll show how to specify a specific
range of cells within a sheet(s) to convert.
The second example shows how to convert multiple sheets within a single Excel file. Creating a single
and multi-file output is illustrated.
The third and final example shows how to convert one or more sheets within many Excel files within
a folder (and sub-folders).
Each
switch shown in blue is described in detail at the bottom of this page.
It is highly recommended you review each switches description before implementing
the example, thereby giving you the full power of 'Convert XLS'.
To convert a single XLS file, C:\in\B.XLS (Sheet named "LastSheet") to a comma delimited CSV file, C:\out\B.CSV using MS Excel conversion method, the following syntax would be used:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"LastSheet" /T"C:\out\B.CSV" /C6 /M1 /V
To do the same using the 'Convert XLS' conversion method (extremely fast and MS Excel not required) change the /M1 switch to /M2 as shown below:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"LastSheet" /T"C:\out\B.CSV" /C6 /M2
If you want a tab (ASCII 9) delimited file instead of a comma delimited file adjust the /N switch:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"LastSheet^^9" /T"C:\out\B.CSV" /C6 /M2
Change the 9 (tab character) in the example above to any character you want. Look at the ASCII chart for numeric character equivalents.
VERY IMPORTANT NOTE: Choosing the delimitation character is only possible when using the 'Convert XLS' (/M2) conversion method.
Building on the last example, say you want to specify a range, say A1:B10 within a sheet to convert. No problem, simply modify the /N switch as shown below:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"LastSheet^A1:B10^9" /T"C:\out\B.CSV" /C6 /M2
Specifying ranges can be very powerful. For example if you want to only extract column N you can use "N:N" for the range.
In example 1 we saw how the /N switch is used to specify the sheet/range to convert and what delimitation character to use in the character separated CSV file. Here we build upon that and show how to specify more than one sheet to convert.
To convert a single XLS file, C:\in\B.XLS (Sheets named "LastSheet","FirstSheet", and "MidSheet") to one CSV file, C:\Out\B.CSV, the following syntax would be used:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"FirstSheet,LastSheet,MidSheet" /T"C:\Out\B.CSV" /C6 /M2
After completion of this example the following file will be created containing all the data of the 3 sheets specified:
C:\Out\B.CSV
To create several output files you can add the /U switch like so:
ConvertXLS.EXE /S"C:\in\B.XLS" /F-4143 /N"FirstSheet,LastSheet,MidSheet" /T"C:\Out\B.CSV" /C6 /M2 /U
After completion the output would be several files:
C:\Out\B-FirstSheet.CSV
C:\Out\B-MidSheet.CSV
C:\Out\B-LastSheet.CSV
VERY IMPORTANT NOTE: The /U switch is only applicable to the 'Convert XLS' (/M2) conversion method. Using the 'MS Excel' (/M1) Conversion method always produces a multi-file output.
If FirstSheet, MidSheet, and LastSheet were indexed 1,2 and 4 respectively, the same results can be attained by setting /N To /N"1-2,4".
Say you wanted to convert the 2nd sheet (/N"2") regardless of what the sheet name might be, of all the XLS files within the "C:\in\" folder and sub-folders (/R for recursive sub-folders). To do this the syntax would be:
ConvertXLS.EXE /S"C:\in\*.XLS" /F-4143 /N"2" /T"C:\out\*.CSV" /C6 /M2 /R
The example above can be modified to have the resulting files placed in the same folder as the input files. By specifying the /G switch and removing the /T switch as shown below:
ConvertXLS.EXE /S"C:\in\*.XLS" /F-4143 /N"2" /G /C6 /M2 /R
In the last two examples, you can also use the /M1 switch to specify the 'MS Excel' conversion method.
Sheet: Only used when an Excel file is the input file. Use "*" or "" for all sheets. You can use names of sheets, or the numeric index. If using numeric indices, you can specify ranges of sheets (i.e. "1,4,10-20" and "4-10,9" etc.). Range and DelimChar are optional.
Range: You could optionally specify a range, say if you only wanted to convert a portion of the input file. Use the same syntax as an Excel range (e.g. A1:B10).
DelimChar: is for specifying the ASCII value of the delimitation character used in a CSV file. 44 for comma, 124 for Bar "|", 9 for the tab etc.
FixedWidth: Here you can specify how to import/export a fixed width text file. Not used in this example.
Note: It is highly encouraged that you use the Verbose (/V) switch initially to see what the status of your conversion is and to help you perfect your command line. When in verbose mode the program will tell you what went wrong or right with your command line using message boxes.
Great customer service, prompt attention to our requirements and lightening speed development
has been my experience with the staff at Softinterface Inc. Within a few hours of installing...
Bruce King, IBM Canada, Toronto, Ontario
"Thanks. The product is terrific. It did exactly what I needed it to do. I had 1321 text files I needed
to convert to Word. It did it in about 6 minutes."
Don Geiger Cullen and Dykman
Adobe Systems Inc. Chooses 'Convert Doc'. A custom site license has been signed by Adobe allowing them to install 'Convert Doc' on their servers. They will be using it specifically to do Doc to HTML conversions. "We look forward to using your product and potentially working together in the future", Bob Free, Adobe
Your products are very impressive, easy to use and script compatible, for what we desired in the management of MS Word and Excel
files. Thank you for your continue contact with me in regards to these tools. Mark Purinton EMC Corporation
"Your wonderful utility took a mere ten minutes to append all 22,000 files into one gigantic 2 gigabyte file. For comparison purposes, the program that wrote the files took approximately 30 hours to write out said 22,000 files. System: 1GHz Pentium/512 Meg RAM Laptop" 'Convert XLS' Linda Romano
235000
'Convert XLS' Downloads. Time tested (~20 years) for your demanding requirements.54
Non-profit organizations assisted. Are you a member of one? Let us know, we would like to help.110
Customers in 110 countries. 1 in 3 Fortune 500 companies use our software.