NonplayerCharacter

Spreadsheets | VLOOKUP vs INDEX MATCH

Apr 3rd, 2019
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // http://www.mbaexcel.com/excel/why-index-match-is-better-than-vlookup/
  2.  
  3. // https://www.vertex42.com/blog/excel-formulas/vlookup-and-index-match-examples.html#simple-examples
  4.  
  5. =INDEX(result_range,MATCH(lookup_value,lookup_range,0))
  6.  
  7. How it works: The MATCH function returns the position number 3 because "a_003" matches the 3rd row in the Item ID range. Next, INDEX(result_range,3) returns the 3rd value in the price list range.
  8.  
  9. // Cheat:
  10. =INDEX ( Column I want a return value from , MATCH ( My Lookup Value , Column I want to Lookup against , Enter “0))
  11. // http://www.randomwok.com/excel/how-to-use-index-match/
Advertisement
Add Comment
Please, Sign In to add comment