Populate Combobox with Dynamic Range problem

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,422
Office Version
  1. 2016
Platform
  1. Windows
I'm using this to populate a series of Comboboxes on a Userform from a dynamic named range;

Code:
Me.Controls("ComboStaff" & i).List = ws.Range("NewAvailableStaff").Value

It works fine until there is only 1 item left in the range and then I get an error,

Could not set the List property. Invalid property array index.

Is there a way I can avoid this?
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hi,
try it like this

Code:
Dim arr As Variant
arr = ws.Range("NewAvailableStaff").Value
Me.Controls("ComboStaff" & i).List = IIf(IsArray(arr), arr, Array(arr))

Dave
 
Upvote 0
Thanks Dave - it's progress, but now I get the same error when there are no values left in the range - so how can I adjust for this?

For info, the Combobox does enable users to free type in it so if there are no values left in the Combobox they can still enter details.
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,155
Members
453,021
Latest member
Justyna P

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