I am using several dropdowns on my user form to display list items from a dynamic range using the following:
Private Sub UserForm_Initialize()
ComboBox1.Rowsource = "dynamicrange"
End Sub
The list works but it will not let me select the first item on the list. This is problems something simple but I don't much about VBA.
Private Sub UserForm_Initialize()
ComboBox1.Rowsource = "dynamicrange"
End Sub
The list works but it will not let me select the first item on the list. This is problems something simple but I don't much about VBA.