Find Button in Excel Spreadsheet

  • Thread starter Thread starter Riz
  • Start date Start date
R

Riz

Hi,

I want to add a "Find" Button or a "Search" button which
searches in the same excel spreadsheet. Basically all I
want to do is to place the find button (Binoculars Icon)
on a spreadsheet.

Please Help.

Thanks
 
Hi
assign the following code to a shortcut or button

sub show_find()
application.Dialogs(xlDialogFormulaReplace).Show
end sub
 
Back
Top