Linking selections in combo boxes.

liam_conor

Board Regular
Joined
Oct 9, 2002
Messages
180
How do I link the selection that I have made in my combo box to other worksheets?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
The names of multiple worksheets with in my workbook are in this combo box (drop down list box). I want to be able to select a worksheet name and then be taken to that specific worksheet.
 
Upvote 0
Thank you for the reference. However, my combo box in embedded in the worksheet and I do not clearly understand the correlation between what Mr. Evans did and what I am trying to do. How do I control the selection value, such as the output 1, 2, 3, ect., from the combo box to return a worksheet with in the workbook?
 
Upvote 0
Assuming your combobox contains a list of worksheet names and is named ComboBox1:

Code:
Private Sub ComboBox1_Change()
    Sheets(ComboBox1.Value).Activate
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,506
Messages
6,114,025
Members
448,543
Latest member
MartinLarkin

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