Bulk Convert Multiple Excel Files [XLSX to XLS]

by renjith on May 17, 2012 · 0 comments

in Microsoft Office, Microsoft Office hacks, tricks

corruptexcelfilesIf you’re having lot of excel files in .xlsx format and you need to convert all those into .xls formats without opening each file one by one, here is a perfect solution.

Make your own excel converter using the below steps.

Open Notepad and copy the below code.

Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open(Wscript.Arguments(0))
objExcel.Application.Visible = False
objExcel.Application.DisplayAlerts = False
objExcel.ActiveWorkbook.SaveAs Wscript.Arguments(1), 56
objExcel.ActiveWorkbook.Close
objExcel.Application.DisplayAlerts = True
objExcel.Application.Quit
WScript.Quit

Save the file as xlsconvert.vbs (Please save it as .vbs file and not .txt file)

Related: Password protect Microsoft Excel files

Now call this batch file using the following command. E:convertxlsconvert.vbs “E:convertinput.xlsx” “E:convertoutput.xls”

Note: In the above command, please change the folder path as necessary.

After converting the XLSX file into XLS format, it will be stored in the same folder.

Be Sociable, Share!

Related posts:

  1. Open Password Protected Excel Documents
  2. How To Search For Particular Text Inside Multiple files In a Folder
  3. Download Multiple Files From Rapidshare
  4. Download Multiple Files from Megaupload,4Shared,ZShare,Easy-Share,Netload and Hotfile
  5. Convert .pptx to .ppt and .docx to .doc without Office 2007
  6. Download Free PC to Mobile SMS Software for Sending Bulk Sms India
  7. Split Large Files into Smaller Zip files for Uploading into free file hosts.
  8. Merging multiple RSS feeds into one

{ 0 comments… add one now }

Leave a Comment

Previous post:

Next post: