Locked lesson.
About this lesson
In this lesson, we learn the basic uses of INDEX and MATCH by building your own invoice template.
Quick reference
INDEX & MATCH Functions
Learn the basic uses of INDEX and MATCH
When to use
These functions are useful to use a value in one dataset to find a similar value in another set and return a related value and are especially useful when VLOOKUP is limited.
Instructions
- INDEX() functions as a map with coordinates. The three arguments would be the map (array) and the row and column coordinates and INDEX returns the value of the cell at that point on the map (array)
- INDEX(array, row, [column])
- MATCH() returns the position of a value in a range.
- MATCH(lookup value, lookup array, [match])
- Combining the two will replace the VLOOKUP with fewer limitations
- The MATCH function will look for the value and return the row or column number where it finds that value. This value is then used to replace either the row or the column reference in the INDEX function.
- MATCH mode dictates exact or approximate match
- Note the use of $$ to make copying the formula more effective
Lesson notes are only available for subscribers.