• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

VlookUp to Index Match

Why are you referencing such a huge array when the value you want to return is in the second column???

=INDEX($B:$B,MATCH(B2,$A$A,0))
 
Also, for INDEX/MATCH and VLOOKUP, it's always good idea to limit your column range to range that contains data (be it hard coding or via dynamic data range).

Unlike SUMIF, COUNTIF and variants, range isn't shrunk to used range with above formulas and will create unnecessary overhead.
 
Back
Top