I have a problem using the lookup function in userforms in vba
what I want is return value from a table using vlookup as the value of lookup is string and the end result is integer
I am using this and now working but it is working with another table which contain only numerics; but not working with a table contain texts (Arabic text ) .
Private Sub ComboBox3_Change()
Dim x As String
x = Me.ComboBox3.Value
Me.TextBox5.Value = Application.WorksheetFunction.VLookup(x,
Worksheets("masterfile").Range("pricerange"), 2, False)
End Sub
kindly help me