Gary McMaster
Well-known Member
- Joined
- Feb 8, 2009
- Messages
- 1,978
Hi Everyone,
I can use the following to load a combobox on a user form with an array.
The following fails when the combo is placed directly on the sheet:
Is there a way to load the array directly into the combo box without dumping the data onto the worksheet and setting the "ListFillRange"?
Thanks in advance for your advice.
Gary
I can use the following to load a combobox on a user form with an array.
Code:
UserForm1.ComboBox1.List = MyArray
The following fails when the combo is placed directly on the sheet:
Code:
ActiveSheet.OLEObjects("ComboBox1").List = MyArray
Is there a way to load the array directly into the combo box without dumping the data onto the worksheet and setting the "ListFillRange"?
Thanks in advance for your advice.
Gary