Populate combobox list

Paella1

Active Member
Joined
Mar 10, 2005
Messages
382
If I populate a combo box list by name:

Code:
combobox1.List = Sheets("Admin").Range("benefittype").Value

No problem.

But...

if I loop through the combo boxes like this:

Code:
Dim cb As OLEObject

For Each cb In Sheets("FORM 1908").OLEObjects

    cb.List = Sheets("Admin").Range("benefittype").Value

Next cb

I get "Object doesn't support this property or method"

If I declare cb as a varaint I get the same problem.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Try this:-
Code:
[COLOR="Navy"]Sub[/COLOR] MG09Mar19
[COLOR="Navy"]Dim[/COLOR] cb [COLOR="Navy"]As[/COLOR] OLEObject
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] cb [COLOR="Navy"]In[/COLOR] Sheets("FORM 1908").OLEObjects
    [COLOR="Navy"]If[/COLOR] TypeName(cb.Object) = "ComboBox" [COLOR="Navy"]Then[/COLOR]
        cb.Object.List = Sheets("Admin").Range("benefittype").value
    [COLOR="Navy"]End[/COLOR] If
[COLOR="Navy"]Next[/COLOR] cb
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
Thanks Mick. It works. I don't understand that object business, but it works so I don't care. Thanks again.
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,176
Members
448,948
Latest member
spamiki

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top