Hi,
I am looking to define a list in VBA and then use that list as the range in a vlookup formula.
Something like the below:
MyRange = Array("AA","AB")
Result = Application.VLookup(Left(A2, 2), MyRange, 1, False)
The ideal results would be if whatever the first two digits of the text in...