Pull Down List using data from multi sources

Snowshoeken

Active Member
Joined
Aug 8, 2002
Messages
306
I need to make a pulldown list of what is essentially 11 digit codes that are listed on different tabs. There are some duplicates. In the end I want to place this pull down list in a User Form. Any ideas? Thanks.

Snowshoeken
"Realizing you have nothing, allows you to do anything."
 
Works perfect. Have another Q. Now that i have got my list ready, I want it to imput my choice into a cell that is the basis for a vlookup and some subsequent calculations. How do I have the "choice" from the list appear in a specific cell? should I start a new thread for this questions? Thanks again.

Snowshoeken
 
Upvote 0

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Just add some code to the ComboBox_Change event procedure, eg:

Code:
Private Sub ComboBox1_Change()
    Worksheets("Sheet1").Range("A1").Value = ComboBox1.Value
End Sub

Change the sheet and range references to suit.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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