Mac error 380 with UserForm ComboBox.RowSource

Mustang0710

New Member
Joined
Mar 4, 2015
Messages
16
I have a ComboBox what works great on Windows PCs, but gives me an error 380 on the Mac.

The UserForm_Initialize subroutine has a problem with this line:
cb_NodeID.RowSource = "Node!B2:B" & NLastRow

In my test file, NLastRow = 371, so the RowSource will resolve to "Node!B2:B371"

I tried to include the single quotes like this:
cb_NodeID.RowSource = "'Node'!B2:B" & NLastRow
<strike></strike>
But neither one works.

Thanks for your help!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Rowsource just doesn't work on a Mac. Use the List property and assign the value of the range to it.
 
Upvote 0
Thanks Rory

Can I set the List property as a range or do I have to loop through all the possible values and use .AddItem to create the list?

Thanks,

David
 
Upvote 0
Code:
cb_NodeID.list = sheets("Node").range("B2:B" & NLastRow).value
basically.
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

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