Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm new to comboboxes and need a few clues.
I have Combobox1 that lists 3 dates. Combobox2 lists the names of volunteers. I want to be able to make many selections from combobox2 to produce a LIST of volunteers (not just change the value of 1 cell). If the 1st, 2nd or 3rd date is selected, the list of volunteers starts should start in C5, E5 or G5 respectively. Could one of you gurus point me in the right direction? Thanks in advance Bri |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() this should work for you Private Sub ComboBox1_Change() Select Case ComboBox1.Value Case "date1" 'change to first date ComboBox2.RowSource = "=Sheet1!C5:C15" ' change to source of new data Case "date2" 'change to second date ComboBox2.RowSource = "=Sheet1!E5:E15" ' change to source of new data Case "date3" 'change to 3rd date ComboBox2.RowSource = "=Sheet1!G5:G15" ' change to source of new data End Select End Sub -- dok112 ------------------------------------------------------------------------ dok112's Profile: http://www.excelforum.com/member.php...o&userid=10581 View this thread: http://www.excelforum.com/showthread...hreadid=513784 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
another combobox question | Excel Discussion (Misc queries) | |||
ComboBox Question | Excel Worksheet Functions | |||
ComboBox Question | Excel Programming | |||
VB question on ComboBox | Excel Programming | |||
ComboBox Question | Excel Programming |