Reputation: 63
How do I built a console application that will convert all Excel 2003 templates to Excel 2007 templates?
Upvotes: 1
Views: 995
Reputation: 8421
Use Workbook.SaveAs(), passing the file format as XlFileFormat.XlExcel12.
Workbook.SaveAs()
XlFileFormat.XlExcel12