Vlookup Vba increment
Posted by Zander on February 13, 2002 5:56 AM
I'm trying to increment the returned value in a lookup table by one using a combobox on a form. The code so far is:
dim test, amount
test = ComboBox1.Value
If test <> "" Then
amount = Application.WorksheetFunction.VLookup(Val(test), Range("names"), 4)
but how do I increase the value in the lookup table? NB the forth column?
Any Ideas
Zander