How do I set the default search direction in Word's Find and Replace from `down` to `all`?
How do I set the default search direction in Word's Find and Replace from down to all? I really hate how "helpful" Word is by asking me constantly if I want to search the rest of the document.
2 Answers
I believe I uncovered the answer while messing around with the dialog. At first I was going to post that the Find dialog appears to always open with All for me. See here:
As I was testing some alternatives I found the dialog opened with Down as a the selected option.
This appears to be tied to whether or not I had a word selected in the text. So when no word was selected I could open Find or Advanced Find and All would be the selected search direction. When I had a word selected the dialog or side bar would open with word as the search term and Down as the search direction.
You can easily change it from there but this appears to be MS trying to 'help' as you point out.
1Updating: In Word 2013, @Brad Patton's answer didn't work for me. The "Find" dialog always opened searching Up. To fix it, I used Visual Basic:
- Make sure no text is selected (i.e., just a blinking cursor).
- Make sure the Find dialog box is closed.
- Open the Visual Basic editor by hitting Alt+F11.
- Click on the "Immediate" pane or hit Ctrl+G to get there.
- Type/paste in one of the following and hit Enter:
- To set the direction to "All,"
Selection.Find.Forward=True - To set the direction to "Up,"
Selection.Find.Forward=False
- To set the direction to "All,"
- Close the Visual Basic window.
- Save your document.
The next time you open the Find dialog, it should be set to the direction you wanted! If it shows as "Down" instead of "All", also try running the following code in step 5 above: Selection.Find.Wrap=wdFindContinue.