ComboBox Items

T

Todd Huttenstine

I have a combobox and I forgot how to add values to it
without having to reference a range to get the values.
For instance I want to add the values: Percentile,
Numbers, and Top, and Worst.

Thanx
 
T

Todd Huttenstine

I got it. This is what I am using.


ComboBox1.Value = "Please Select"
ComboBox1.AddItem "Best Performing (%)"
ComboBox1.AddItem "Worst Performing (%)"
ComboBox1.AddItem "Best Performing (Number)"
ComboBox1.AddItem "Worst Performing (Number)"
 
Top