How does this line of code run?

G

Gary''s Student

It runs pretty well in context:

Sub zeroo()
Dim vrEITab As Range
Set vrEITab = Range("A1:A10")
Range("A5").Value = 11
x = Application.WorksheetFunction.Lookup(11, vrEITab)
MsgBox (x)
End Sub

will display the desired 11
 
Top