Add range to combobox

Padatwo

New Member
Joined
Apr 12, 2016
Messages
2
Hello I'm trying to add a range of elements to a comboBox but every time I try to do it i get the message "Run-Time Error '1004' Application-defined or object-defined Error'.
Can any of you explain me what I'm I thinking wrongly, my code is:

Private Sub ComboBox1_Change()

With Worksheets("Aux")
ComboBox1.List = .Range(.Cells(1, "D"), .Cells(Limit, "D")).Value
End With

End Sub
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hello I'm trying to add a range of elements to a comboBox but every time I try to do it i get the message "Run-Time Error '1004' Application-defined or object-defined Error'.
Can any of you explain me what I'm I thinking wrongly, my code is:

Private Sub ComboBox1_Change()

With Worksheets("Aux")
ComboBox1.List = .Range(.Cells(1, "D"), .Cells(Limit, "D")).Value
End With

End Sub
The value of the variable "Limit" is not set anywhere in your code so it has the default value of 0. Cells(0,"D") is off the sheet which causes the error.
 
Upvote 0

Forum statistics

Threads
1,215,781
Messages
6,126,869
Members
449,345
Latest member
CharlieDP

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