Good morning macropod.

I gave it a try and came up with this, but I am not even getting a message box pop up.

Also, logo.jpg does exist in the word doc directory.

Function FileThere(FileName As String) As Boolean
    FileName = ThisDocument.Path
    FileName = FileName & "\" & "logo.*"
    
    FileThere = (Dir(FileName) > "")
    
    If FileThere(FileName) Then
        MsgBox "Image found!"
    Else
        MsgBox "File Not There!"
    End If
End Function