B
Bill
Hello,
Can I launch Word from within an Excel macro? If so, how?
Bill
Can I launch Word from within an Excel macro? If so, how?
Bill
Hello,
Can I launch Word from within an Excel macro? If so, how?
Bill
Nick Hodge said:Or using early binding (You will need to manually set a reference to the
Word Object Library through Tools...>References... in the VBE)
Sub RunWord()
Dim wd As Word.Application
Set wd = New Word.Application
wd.Visible = True
End Sub
--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
[email protected]