- Open Word, without any documents.
- Go to the Replace box and click on More so you can see the checkbox.
- Uncheck it.
- Close Word.
If that does not work, I suspect you have a macro running that runs a Find using wildcards.
When options are checked in this, they remain active at least for the current Word session. That is why, in macros that use any options or set anything in the find and replace dialog, it is important to return everything to the default at the end of the macro.
Here is a macro that will reset the Find/Replace Dialog settings, should you need it.
Code:
Sub FindReplaceDefaultsReset()
'
' Reset Find/Replace dialog to defaults
' Charles Kenyon 2023-06-11
'
On Error GoTo NoDoc
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
On Error GoTo -1
Exit Sub
NoDoc:
MsgBox "This macro requires an open document."
On Error GoTo -1
End Sub
Instructions for Installing Macros from Forums or Websites by Graham Mayor, MVP