I am able to find and replace in word, however all I want to know is if the word was found, I have tried the following code:
This works
oDoc.Content.Find.Execute(FindText:=x, ReplaceWith:=y, Replace:=Word.WdReplace.wdReplaceAll)
This never give the true statement
oDoc.Content.Find.Text = x
If oDoc.Content.Find.Found = True Then
But why not?