• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Hyperlink within a Combo Box?

Afox10

New Member
Hello All,

I've found great success from previous post and figured Id give it another shot. Example file is attached.

I am trying to create a searchable drop down list (combo list), that once the name is selected, I am able to "hyperlink" to a correlating table in the spreadsheet.

So for example, if we use the attached spreadsheet:
If we input M5, in the drop down list, I would then like to push 'GO' (or whatever can be created to work..) and have it go directly to the Machine5 table. Obviously the same process would need to follow with whatever machine is selected.

Any thoughts on this? As always, thank you for your time excel community!!

AFox
 

Attachments

  • Example.xlsx
    18.6 KB · Views: 16
Another option without helper cells,

1] Select Developer >> Design Mode >> click "ComboBox" >> Properties >> Alphabetic >>

>> LinkedCell, enter : B3

>> ListFillRange, enter : MachineList

2] In Cell B4, enter formula :

=HYPERLINK("#R12C"&MATCH(B3,$12:$12,0),"GO")

3] Select M1~M5 from ComboBox, then, click B4 "GO"

Regards
Bosco
 

Attachments

  • ComboBox(1).xlsx
    47 KB · Views: 20
Back
Top