search button on sheet (ctrl+f)

  • Thread starter Thread starter pswanie
  • Start date Start date
P

pswanie

im trying to get a macro for the "edit" "find" (ctrl+f)

im gona put it in a form button
 
You just want to display that edit|Find dialog?

Application.Dialogs(xlDialogFormulaFind).Show
 
Something like this...

Sub ShowFindDialog()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub
 

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