Trying to sub a variable into vlookup for the table array.
This works:
Sub vl()
' temporary fix for summer teach
Dim vl1 As Range
Dim vl2 As Range
Dim vl1a As Range
Set vl1 = Range("A:A").Find("C.I.")
Set vl2 = Range("B:B").Find("17200")
Set vl1a = Range(vl1, vl2)
MsgBox...