OK, so why not use something like:
Code:
Const BmkNm as String = "MyTable"
With doc
If .Bookmarks.Exists(BmkNm) Then
'Do whatever you want with the bookmark and/or its table.
Else
MsgBox ("Bookmark '" & BmkNm & "' not present in the document.")
End If
End With