↧
Answer by Gaff for Excel 2003: open spreadsheet and run macro from command line
You could do this with VBScript. Here's some example code:Option ExplicitDim excelObjectSet excelObject = CreateObject("Excel.Application")excelObject.WorkBooks.Open "path:\to\file.xls", 0,...
View ArticleExcel 2003: open spreadsheet and run macro from command line
The need: run a macro within an excel 2003 file every week, automatically, than save the file.The approach: add an action to task manager for every week, calling the file with command line...
View Article