ComboBox Items

  • Thread starter Thread starter Todd Huttenstine
  • Start date Start date
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
 
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)"
 
Back
Top