I have a command button on an excel spreadsheet to open a word document with this code.
This works great opens the proper document, but is not the active document. I would like when you click that you see the word document.
Code:
Private Sub CommandButton1_Click()
Dim objWord As Object
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
objWord.Documents.Open "H:\Spreadsheets\400 Book\400 Book help.docx"
End Sub