Edit Find defaults to rows

  • Thread starter Thread starter Ken Schmidt
  • Start date Start date
K

Ken Schmidt

Hi,
Am looking for a way to change the default Edit-Find by
rows and formulas to bu columns and values. Help text
advises that columnar searches are more efficient; there
MUST be a way to select that as default. Help, please.
TIA Ken.
 
Put this in the workbook_open event of your personal.xls:

Private Sub Workbook_Open()
On Error Resume Next
n = Cells.Find("XYZ", searchorder:=xlByColumns).Row
End Sub

It will find nothing, but it will "set" the default finds to search by
columns.

Bob Umlas
Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top