Thread: ComboBox Items
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Todd Huttenstine[_2_] Todd Huttenstine[_2_] is offline
external usenet poster
 
Posts: 237
Default ComboBox Items

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)"


-----Original Message-----
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
.