E
Eddie_SP
Have just started working with comboboxes and listboxes.
I have a worksheet with codes in column A and details of each code in the
other columns.
In my UserForm I have this Combobox1 that will have the values of column A
(RowSource) and many listboxes, each one for each column (B, C, D, etc).
I'm using the code below:
Private Sub ComboBox1_Click()
Dim ComboCode As String
ComboCode = Application.WorksheetFunction.VLookup(ComboBox1.Value,
PEDIDOS.Range("A6:J2000"), 2, 0)
ListBox1.Value = ComboCode
End Sub
But it "requires an object".
Can anyone help me?
Thank you in advance.
I have a worksheet with codes in column A and details of each code in the
other columns.
In my UserForm I have this Combobox1 that will have the values of column A
(RowSource) and many listboxes, each one for each column (B, C, D, etc).
I'm using the code below:
Private Sub ComboBox1_Click()
Dim ComboCode As String
ComboCode = Application.WorksheetFunction.VLookup(ComboBox1.Value,
PEDIDOS.Range("A6:J2000"), 2, 0)
ListBox1.Value = ComboCode
End Sub
But it "requires an object".
Can anyone help me?
Thank you in advance.