Select the code I previously provided you:
starting with Sub SearchAllSheets()
and down through End Sub
then do a Control-Copy (Ctl-C)
Switch to your workbook in excel (With your workbook open),
Hold down the Alt key and simultaneously press the F11 key
The VBE Window should suddenly appear;
The the tree structure window (Project explorer) is on the left-hand side.
In that window click (once) on the object VBAProject(yourbookname)
Then go to the menu and select Insert: then select module;
Your cursor, at this point should be in the Code Window
At this point do a Ctl-V (or Paste)
Now the code is in the (standard) module.
Close the VBE Window.
Back at your first worksheet (sheet1 or whatever name, say sheet1) now you
are ready to run the code (macro).
Simultaneously, hold down the Alt key and press F8 - this brings up the
Macro Dialog box; look for the macro named SearchAllSheets, single-click
it(select-it)
and click the Run button (on right-habd side of same box;
That should do it (each time you want or need to perform a search).
You can assign the Macro to an Icon on your Toolbar if you like to speed up
the select and run process..
HTH