So i am using this script to open an .xlsm and run a macro. The script runs fine aside from the fact that when the instance of excel is opened, it is without my usual add ins. Normally my excel opens fine with all my add-ins correctly installed.
Any ideas? thanks
'Input Excel File's Full Path
ExcelFilePath = "C:\Myfolder\Myfile.xlsm"
'Input Module/Macro name within the Excel File
MacroPath = "Module1.Mymacro"
'Create an instance of Excel
Set ExcelApp = CreateObject("Excel.Application")
'Do you want this Excel instance to be visible?
ExcelApp.Visible = True 'or "False"
'Prevent any App Launch Alerts (ie Update External Links)
ExcelApp.DisplayAlerts = False
'Open Excel File
Set wb = ExcelApp.Workbooks.Open(ExcelFilePath)
'Execute Macro Code
ExcelApp.Run MacroPath
'Save Excel File (if applicable)
wb.Save
'Reset Display Alerts Before Closing
ExcelApp.DisplayAlerts = True
'Close Excel File
wb.Close
'End instance of Excel
ExcelApp.Quit
'Leaves an onscreen message!
MsgBox "Task successfully ran at " & TimeValue(Now), vbInformation