Hi! I have several multi-dimensional arrays from which I am using different lookup values to pull data. I'm currently using WorksheetFunction.Vlookup which I think is going very slow. I have many iterations and several different arrays so the total impact in run time is pretty significant. What is the best way to lookup values in an array? Or any other strategies to speed things up? THANKS!!
------------------
'example
Dim ArrData
ArrData = range("data")
Value = Application.WorksheetFunction.Vlookup(LookupValue, ArrData, 5, 0)
Bookmarks