View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
MarkC MarkC is offline
external usenet poster
 
Posts: 9
Default Macro to open a word document from excel

How does this work if there is a N in the column, as that will have to open
the other word doc...sorry should have explained this more...Thanks for the
reply.



"Bob Phillips" wrote:

If Range("H1").Value = "Y" Then
Set oWordApp = CreateObject("Word.Application")
Set oDoc = oWordApp.Documents.Open("C:\personal\bob\doc1.doc" )
'do something
Set oDoc = Nothing
oWordApp.Quit
Set oWordApp = Nothing
End If



--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"MarkC" wrote in message
...
Can anyone help please,I am looking for a macro that will open a word
template based upon a 'Y' or 'N' answer in an excel column (column G).

Can this be done?