Helol Again!
Trying to understand how that works with userform.
I got combobox1 on user form which takes the names range from the list Database. I want textbox3 to vlookup for the positions. But getting the "424 object required error"
Range "POBALL" is 4 column.
What is wrong with the code ?
Trying to understand how that works with userform.
I got combobox1 on user form which takes the names range from the list Database. I want textbox3 to vlookup for the positions. But getting the "424 object required error"
Range "POBALL" is 4 column.
What is wrong with the code ?
Code:
Private Sub UserForm_Initialize()
Me.TextBox1 = Date
Me.TextBox2 = Time
Me.TextBox3.Value = Application.WorksheetFunction.VLookup(Me.ComboBox1.Value, Sheet2.Range("POBALL"), 3, False)
End Sub