I've tried a number of methods found on the internet, but all seem to cause an error.

I need have a macro that opens an existing file in Word and doesn't wait for Word to close. Anybody have some code that works for this?

Here's one example of what I've found:

PHP Code: 
Private Declare Function ShellExecute Lib "shell32.dll" _
  Alias 
"ShellExecuteA" (ByVal hWnd As Long_
  ByVal lpOperation 
As StringByVal lpFile As String_
  ByVal lpParameters 
As StringByVal lpDirectory As String_
  ByVal nShowCmd 
As Long) As Long

Sub Shell_Execute
(PathFile_Name)
    
' From John Wallenbeck
    ' 
1/19/16 WML
    
    Dim FileName 
As String
    Dim Result 
As Long        
    
If Right(Path1) <> "\" Then _
        Path = Path & "
\"
        
    FileName = Path & File_Name
    Result = ShellExecute(0&, vbNullString, FileName, _
        vbNullString, vbNullString, vbNormalFocus)
    If Result < 32 Then MsgBox "
Error"
    
End Sub ' Shell_Execute 
Thanks for any help. - Mac