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
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
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
Summary: When I select a list value on an Excel form combobox that I created I want to go to another worksheet. For example, list box values are country names. For each country I have a worksheet with info on ...
Summary: Hello, I'd like to excel to transfer items = list of names from my userform listbox to specific range in excel sheet e.g A1:K1 and sort the names alfabetically. I'd also like excel to remove a name f...
Summary: I'm trying to create a simple useform on excel. I want to select the worksheet into which the data is entered based on the value selected from a combobox list. In this case it is a list of athlete's...