Computing.Net > Forums > Office Software > Excel combobox list value hyperlink

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Excel combobox list value hyperlink

Reply to Message Icon

Name: ipsquared
Date: July 28, 2007 at 16:47:44 Pacific
OS: XP
CPU/Ram: Intel
Product: Dell
Comment:

How can I create a combo box in Excel so that when I click on a list value it brings me to a worksheet in same workbook? Just like clicking on list value in Name Box on formula bar can bring me to a worksheet for a named cell? Does this require some code? Anyone have that code? I am not a programmer. Thanks



Sponsored Link
Ads by Google

Response Number 1
Name: Coldpaws
Date: July 30, 2007 at 04:39:36 Pacific
Reply:

Hi , a little bit of code along the lines of this will allow you to jump to different sheets depending on which value you select from your combobox dropdown list.
Of course, you need to have created the combo box on the sheet first.


Private Sub ComboBox1_Change()

If ComboBox1.Value = "three" Then
Sheets("Sheet2").Select
End If

If ComboBox1.Value = 2 Then
Sheets("Sheet3").Select
End If

End Sub

If you're not totally confused , you don't fully understand the question.


0

Response Number 2
Name: ipsquared
Date: July 30, 2007 at 05:27:43 Pacific
Reply:

Coldpaws, Thank you. I will try this. IpSquared


0

Response Number 3
Name: IGWright
Date: September 14, 2007 at 13:32:31 Pacific
Reply:

Hey Everybody,

I'm in the same boat. I tried the code, but have not been able to get it working so far. Here is what I got:

Private Sub ComboBox_Change()


If ComboBox.Value = "R FRONT" Then
Sheets("R_FRONT_Hardwired").Select
End If

If ComboBox.Value = "L REAR" Then
Sheets("Audio_1_AZ80").Select
End If

If ComboBox.Value = "120V-60HZ 4A" Then
Sheets("ER_16_PC_100A_Outlet_6").Select
End If

If ComboBox.Value = "R REAR" Then
Sheets("Audio_1_AZ80").Select
End If

End Sub


Any help would be greatly appreciated.


All the best,


Ian


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: Excel combobox list value hyperlink

Excel combobox code www.computing.net/answers/office/excel-combobox-code/6863.html

Excel listbox list transfer to shee www.computing.net/answers/office/excel-listbox-list-transfer-to-shee/8029.html

VB Userform - Select worksheet from Combobox www.computing.net/answers/office/vb-userform-select-worksheet-from-combobox-/8814.html