I got a solution throught a VB script. This might be helpful to all...

http://www.computing.net/answers/pro...csv/16265.html

Okay, to make this easy, I made this as a VBScript. It'll open every .xls file in the directory, then save it as ..csv:

Dim oFSODim oShell, oExcel, oFile, oSheetSet oFSO = CreateObject("Scripting.FileSystemObject")Set oShell = CreateObject("WScript.Shell")Set oExcel = CreateObject("Excel.Application")oExcel.DisplayAlerts = False For Each oFile In oFSO.GetFolder("C:\").Files If LCase(oFSO.GetExtensionName(oFile)) = "xls" Then With oExcel.Workbooks.Open(oFile, 0, True, , , , True, , , , False, , False) For Each oSheet In .Worksheets oSheet.SaveAs ".\" & oFile.Name & "." & oSheet.Name, 6 Next .Close False, , False End With End IfNextoExcel.QuitoShell.Popup "Conversion complete", 10
The first red part (the C:\) is where the script will look for files.
The second red part (the .) is where the script will save the sheets.


Cheers,