Excel 2003 Find and Replace is changed to previovois ver.-awful!!

T

Tvermoes

Well, the 2003 version of Excel has several changes compared to E2000 and
older. As an example the find and replace function now has as default the
active box "replace with", while earlier had "Find what".
For no good reason one has to re learn.

And this is just one change.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...6-83a3731cca44&dg=microsoft.public.excel.misc
 
G

George Nicholson

"Find what" still comes up as the default on my XL 2003. I've installed SP1.
Have you?

HTH,
 
D

Dave Peterson

The "find what" box has focus the first time I hit edit|replace.

But if I do it once, then the next time I use edit|replace, the "replace with"
box has focus.

If it's really important to you, you could use a small macro to show that
replace dialog:

Option Explicit
Sub myReplace()
Application.Dialogs(xlDialogFormulaReplace).Show "", ""
End Sub
 
Top