Combo Boxes

liam_conor

Board Regular
Joined
Oct 9, 2002
Messages
180
I still cannot figure out, for the life of me how, to do this:

I need a combo box that displays the names of several worksheets. When the name of one of these worksheets is selected it is displayed in a cell, as a link to the desired worksheet. Any help? Or can you recommend a web site that can help.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Like this?

Code:
Private Sub ComboBox1_Change()
    Dim Anchor As Range
    Dim SubAddress As String
    Dim Text As String
    Set Anchor = ActiveSheet.Range("A1")
    SubAddress = ComboBox1.Value & "!A1"
    Text = "Go To " & ComboBox1.Value
    ActiveSheet.Hyperlinks.Add Anchor:=Anchor, Address:="", _
    SubAddress:=SubAddress, TextToDisplay:=Text
End Sub
 
Upvote 0
Mr. Poulsom,

I am very greatful for you help, but I don't know how to get my worksheet names to be displayed in the combobox.
 
Upvote 0
Mr. Poulsom,

I am very greatful for you help, but I don't know how to get my worksheet names to be displayed in the combobox.
 
Upvote 0

Forum statistics

Threads
1,213,538
Messages
6,114,218
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top