Auto Search When File Opens

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to configure a spreadsheet so it automatically comes up with
the FIND tool as soon as the sheet opens?

Thanks,
Mark
 
Is there a specific group of text that you want to find? A macro could be
written to find it. Otherwise, try CONTROL F.
 
You can have a macro run each time that the workbook opens:

Option Explicit
Sub auto_open()

Worksheets("sheet1").Select 'open to the correct sheet
Application.Dialogs(xlDialogFormulaFind).Show

End Sub


If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 
CTRL/F is exactly what I need but I woud like it to start as soon as the
spreadsheet opens. There are 5000+ names in the sheet & it a search will be
necessary so having it open automatically will save them a small step.

Thanks,
Mark
 

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