Combo box problem

doumamar

New Member
Joined
Jul 15, 2010
Messages
41
I currently use the following to populate my combo box

Private Sub ClientMeetingForm_Initialize()
Dim Rng As Range

'Row source on Sheet(12)Column "A"
With Sheets("Client List")
Set Rng = .Range(.Range("A2"), .Range("A" & Rows.Count).End(xlUp))
End With

'set range name
Rng.Name = "MyNewRng"

'Change Rowsource as DataLabel in column "A" changes size
With ComboBox1
.RowSource = "MyNewRng"
.ListIndex = 0
End With
End Sub


However when the Client list range is increased the combo box is not populated correctly. For example the bottom or top entry might not be included.

Should I set my combo box source to "MyNewRng"?

Thanks,
David.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

Forum statistics

Threads
1,214,907
Messages
6,122,181
Members
449,071
Latest member
cdnMech

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