Convert CSV to any file MS Excel Can Save As

If you have trouble running these please see Using the Command Line and Helpful Hints For Creating a Command Line.

These examples use the 'MS Excel' conversion method (/M1) to convert a CSV file to any file MS Excel can 'Save As'. Simply change the /C switch in the examples below to the desired target (output) file format. See Excel Conversion File Type Constants for all possible file types and corresponding values for /C.

The first example shows how to convert the most popular form of a CSV file, a comma delimited file, to a dBase IV file. The second example shows how to convert any character delimited (tab, bar, semicolon etc.).

Each switch shown in blue is described in detail below the examples. It is highly recommended you review each switches description before implementing the example, thereby giving you the full power of 'Convert XLS'.

Example 1 (Comma Delimited CSV File to 'dBase IV')

To convert a single comma delimited CSV file, "C:\in\input.CSV" to a dBase IV file located in the "C:\Out\" folder, the following syntax would be used:

 

ConvertXLS.EXE /S"C:\in\input.CSV" /T "C:\Out\output.DBF" /C11 /F6 /M1 /V

To convert a whole folder (and sub-folders) of comma delimited CSV files, C:\in\*.CSV to dBase IV files located in the C:\in\ folder, the following syntax would be used:

 

ConvertXLS.EXE /S"C:\in\*.CSV" /T "C:\in\*.DBF" /C11 /F6 /M1 /R /V

 

The /G switch can be used to tell 'Convert XLS' to place each output file in the same folder as each input file. Therefore the command line above is equivalent to the command line below:

 

ConvertXLS.EXE /S"C:\in\*.CSV" /G /C11 /F6 /M1 /R /V

 

You may want to convert a whole folder and its sub-folders and place the output into a separate folder/drive. In which case use this syntax:

 

ConvertXLS.EXE /S"C:\in\*.CSV" /T "C:\Out\*.DBF" /C11 /F6 /M1 /R /V

 

Example 2 (Any Character Delimited CSV File to 'dBase IV')

The next example can be adapted to convert any character delimited text (CSV) file. Say we have a bar "|" delmited text file that looks like this:

 

a1|b1|c1

a2|b2|c2

a3|b3|c3

 

The bar character has an ASCII equivalent of 124 therefore they syntax would be like this:

 

ConvertXLS.EXE /S"C:\in\bar_delimited.txt" /T "C:\Out\Final.DBF" /C11 /F6 /M1 /N"^^124" /V

 

If we had a tab delimited file we would change the 124 in the above examples with ASCII equivalent of the tab character, 9. If you are not sure what the numeric equivalent of your separation character is, go to the Options button and click on the "CSV,TSVĀ…" tab within the user interface. Of course the examples above can be adapted to do whole folders and sub-folders similar to what we did in Example 1.

 

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.