Command Button

  • Thread starter Thread starter RBritt
  • Start date Start date
R

RBritt

I have placed a command button on my worksheet. When I click the
button, I want to launch the Ctrl + F (Find) function. Does anyone
have an idea as to how I can do this? Thank you!



------------------------------------------------


-- View and post Excel related usenet messages directly from http://www.ExcelTip.com/forum
at http://www.ExcelTip.com/
------------------------------------------------
 
Hi,

Create a macro like this:



Sub MacroFind()



Application.Dialogs(xlDialogFormulaFind).Show



End Sub



And assign it to your button.
 
Back
Top