Thread
:
Macro - Open Word with Excel macro
View Single Post
#
2
FxM
Posts: n/a
Bill a écrit :
Hello,
Can I launch Word from within an Excel macro? If so, how?
Bill
Hi Bill,
Something like :
Sub test()
Set ww = CreateObject("word.application")
ww.Visible = True
End Sub
HTH
FxM
Reply With Quote