Hello everyone,
I have a ComboBox named cboEmp1. It is in a frame on a UserForm. The list to use to populate the combo box is located in column A of the worksheet 'Reference'
Here is my code. (I don't think I entered it here correctly )
Private Sub PopulateEmployee()
With Worksheets("Reference")
Me.cboEmp1.List = .Cells(2, 1).Resize(.Cells(.Rows.Count, 2).End(xlUp).Row - 1, 1).Value
End With
End Sub
No matter how many entries are on the list only the first 3 show up in the ComboBox.
Any help is appreciated.
Thanks
katydid
I have a ComboBox named cboEmp1. It is in a frame on a UserForm. The list to use to populate the combo box is located in column A of the worksheet 'Reference'
Here is my code. (I don't think I entered it here correctly )
Private Sub PopulateEmployee()
With Worksheets("Reference")
Me.cboEmp1.List = .Cells(2, 1).Resize(.Cells(.Rows.Count, 2).End(xlUp).Row - 1, 1).Value
End With
End Sub
No matter how many entries are on the list only the first 3 show up in the ComboBox.
Any help is appreciated.
Thanks
katydid