Search Tool

  • Thread starter Thread starter david_lcfc
  • Start date Start date
D

david_lcfc

It would be useful to have a search tool implemented in Excel that
would allow the user to select from a list, afterwards the user would
be transported to the cell from the list. Does anyone know hoiw to
implement this.
 
Right click sheet tab>view code>copy/paste this. now when you have t4 in a
cell and double click on that cell you goto it

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Range(ActiveCell).Select
End Sub
 
I'm looking for a combo box search tool that will take the user to the
cell say near the bottom of the page if they selected it.
 

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