Hi folks,
I need to know is there any way to access excel macro in MSOffice word application?
Regards,
Deepak Gopikannan
Printable View
Hi folks,
I need to know is there any way to access excel macro in MSOffice word application?
Regards,
Deepak Gopikannan
You could try something like:
Code:Sub RunExcelMacro
Dim xlApp as Object
Set xlApp = CreateObject("Excel.Application")
xlApp.Run "'fileNameOfWorkbook.xlsm'!nameOfMacroToRun"
End Sub