Find Button in Excel Spreadsheet

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
 
F

Frank Kabel

Hi
assign the following code to a shortcut or button

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