View Single Post
  #2   Report Post  
FxM
 
Posts: n/a
Default

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