A
Alberto Ast
I have a combobox with a list assigned with
For X = 16 To 30
ComboBox1.AddItem Sheets("Staff").Cells(1, X).Value
Next
but if user type something different it will take it
How do I force it to take only values from the preloaded list?
For X = 16 To 30
ComboBox1.AddItem Sheets("Staff").Cells(1, X).Value
Next
but if user type something different it will take it
How do I force it to take only values from the preloaded list?