Here is code that opens a word document from Outlook 2007. How can we change it to open a Excel Macro Enabled Worksheet?
Public Sub OpenOutlookNoteTableOneColumn()
Dim oWord As Word.Application
Set oWord = CreateObject("Word.Application")
oWord.Documents.Open ("C:\Users\Name\AppData\Roaming\Microsoft\Templates\WordDocumentName.docm")
With oWord
.Visible = True
End With
Set oWord = Nothing
End Sub
Public Sub OpenOutlookNoteTableOneColumn()
Dim oWord As Word.Application
Set oWord = CreateObject("Word.Application")
oWord.Documents.Open ("C:\Users\Name\AppData\Roaming\Microsoft\Templates\WordDocumentName.docm")
With oWord
.Visible = True
End With
Set oWord = Nothing
End Sub