Example 1: Change the contents of a sheet.

Example 1A: Change a single cell value

In this example we show how to modify a single cells value to "Apples". In this case the cell will be B2 within the sheet named Fruit.

ConvertXLS.EXE /S"C:\Input\In.XLS" /T"C:\Output\Out.XLS" /P116 /1"Fruit" /2 B2 /3 "Apples" /4 FALSE

Example 1B: Change a Range of cells value

This next example is identical to the previous one, however we're going to change a whole range B2:D10 of cells to the value of "Apple".

ConvertXLS.EXE /S"C:\Input\In.XLS" /T"C:\Output\Out.XLS" /P116 /1"Fruit" /2 B2:D10 /3 "Apples" /4 FALSE

To change a whole folder simply use the *.XLS syntax in the examples above.