Forum Discussion
Berliner77
Apr 16, 2026Copper Contributor
Default search scope in "find and replace"
Hi all, is there any way to make the search scope in the "fine and replace" menu (under "more") default to "all"? I have files with text boxes and the only way to make sure they are included is with ...
gmaxey
May 04, 2026Copper Contributor
You can create a macro and assign the shortcut ctrl+h to it:
Sub ScratchMacro()
Dim oDlg As Dialog
Selection.Collapse wdCollapseEnd
Set oDlg = Dialogs(wdDialogEditFind)
With Selection.Find
.ClearFormatting
.Wrap = wdFindContinue
End With
oDlg.Display
lbl_Exit:
Exit Sub
End Sub