Names in Combobox are hyperlinked to cells

  • Thread starter Thread starter helmekki
  • Start date Start date
H

helmekki

Hi

I have a combobox that shows several names.....

the point i want is when i select a name from drop-down combobox, s
the chosen name should work as a hyperlink to other cell within th
same sheet

i.e. when choosing a name, it should take me to a preselected cell
names in combobox shoul be hyperlinked to other cells within the sam
sheet.

hope it is clear

yours
 
Private Sub ComboBox1_Change()
If ComboBox1.ListIndex = 0 Then Range("K20").Activate 'first name
If ComboBox1.ListIndex = 1 Then Range("K21").Activate 'second name
End Sub

Do this for each name in your list and change the range to your needs.

Mike F
 

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