Thread
:
Using combo box
View Single Post
#
2
Posted to microsoft.public.excel.programming
AndrewArmstrong
external usenet poster
Posts: 24
Using combo box
Use something like this:
Private Sub UserForm_Activate()
'Clear Combobox
ComboBox2.Clear
'Add data from sheet
ComboBox2.AddItem Range("d11")
ComboBox2.AddItem Range("d12")
ComboBox2.AddItem Range("d13")
End Sub
Reply With Quote
AndrewArmstrong
View Public Profile
Find all posts by AndrewArmstrong