Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The below code populates a Combobox from the selected value in Textbox2.
But i found if i change the value in Texbox2, the List STILL has the other values from the previous list adding them to the new list. How can i make sure when/If a value in Textbox2 is modified ONLY those vlaues are listed ? Private Sub TextBox2_Change() Application.ScreenUpdating = False With ActiveWorkbook.Worksheets("names") On Error Resume Next For i = 3 To 21 If .Cells(i, Val(TextBox2.Value)).Value < "" Then ComboBox3.AddItem .Cells(i, Val(TextBox2.Value)) End If Next i End With Application.ScreenUpdating = True End Sub Corey.... |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
if bigger than | Excel Worksheet Functions | |||
We want bigger spreadsheets | Excel Discussion (Misc queries) | |||
Excel 2000 (9.0.6926 SP3) spreadsheet getting bigger & bigger .... | Excel Discussion (Misc queries) | |||
How can I get fonts bigger on my dropdown list? | Excel Worksheet Functions | |||
Workbook Bigger and Bigger | Excel Programming |