View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student
 
Posts: n/a
Default help creating a macro in excel that opens a specific word document

Try:

Sub Macro1()
x = Shell("cmd.exe /c C:\Userguide.doc", 1)
End Sub
--
Gary's Student


"Prohock" wrote:

I would like to create a macro in excel that loads a specific word document
in MSword! Any Ideas?