Yes. You'll need to launch Word using automation, e.g.
Dim objWord As Object
Set objWord = New Word.Application
objWord.Documents.Add "C:\My Documents\xyz.DOT"
Debug.Print objWord.ActiveDocument.Bookmarks.Count
or loop through the Bookmarks object's Item collection looking for the
name of the bookmark.