L
Legacy 143009
Guest
Hi,
I want to match a value in the second dimension of my array but starting from index 10. Is it possible? Something like:
I want to match a value in the second dimension of my array but starting from index 10. Is it possible? Something like:
VBA Code:
With Application
Debug.Print .Match("searchString", Range(.Index(myArr, 10, 2), .Index(myArr, UBound(myArr), 2)), 0)
End With