Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hello,
Can I launch Word from within an Excel macro? If so, how? Bill |
#2
![]() |
|||
|
|||
![]()
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 |
#3
![]() |
|||
|
|||
![]()
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 HIS "FxM" wrote in message ... 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 |
#4
![]() |
|||
|
|||
![]()
Thanks FxM, Nick
"Nick Hodge" wrote in message ... 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 HIS "FxM" wrote in message ... 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open two excel windows side by side | Excel Discussion (Misc queries) | |||
open separate exterior excel windows | Excel Discussion (Misc queries) | |||
Open excel from htm page | Excel Discussion (Misc queries) | |||
Open Access Database under and Excel window using a Macro | Excel Worksheet Functions | |||
How do you open a word document from inside excel by using hyperl. | Excel Discussion (Misc queries) |