What is VLOOKUP?
VLOOKUP (V stands for ‘Vertical’) is an in-built function in excel for looking up a piece of information in a table or data set and extracting some corresponding data/information.
In other words, VLOOKUP looks for a given value in a vertical list / table array, and once it has found that value, it returns respective or corresponding value from specified column number.
Usages of VLOOKUP?
VLOOKUP function is best suited for situations when you are looking for a matching data point in a column, and when the matching data point is found, you go to the right in that row and fetch a value from a cell which is a specified number of columns to the right.
VLOOKUP Syntax
=VLOOKUP(lookup_value, table_array, col_index_num , [range_lookup])
As per above VLOOKUP formula, it takes 4 arugments
- Lookup_value(Required) - this is the look-up value that we want to look up in the left-most column of a table.
- Table_array(Required) - The table array is the data array that is to be searched. The VLOOKUP function searches in the left-most column of this array.
- Col_index(Required) - specifying the column number of the table array from which we want to fetch the matching value.
- Range_lookup(optional argument) - here you specify whether you want an exact match or an approximate match. If omitted, it defaults to TRUE
- True – Approximate match, it means if exact match is not found, then it uses closest match below the lookup_value
- False – Exact Match, it means if exact match is not found, then it will return error
VLOOKUP EXAMPLE
We have a list with students’ roll number and marks of three subjects as per below screenshot
Now if we want to display all three subjects’ marks by entering any specific roll number in cell G3, then we use VLOOKUP formula as mentioned below
=VLOOKUP($G$3,$A$3:$D$17,2)
Here, in above formula
- We enter above formula in cell H3 to find Marks of Math Subject
- First Argument (lookup_value) – is our roll no column i.e G3
- Second Argument(table_array)- is our data array, in which we searched
- Third Argument(col_index) – is our index number of table array, in above example we wrote 2 as index number, so it will return 2nd column value from table array i.e Math subject marks.
Similarly, we enter same formula in Cell I3 & J3 to find out other subjects marks by only changing column index number as per below image
Now, if we enter any roll number in cell G3, it will display all three subjects’ marks in respective cells. In below image we enter roll number 1012 in cell G3 and it will return all subject marks .
Excel VLOOKUP - things to remember!
- The VLOOKUP function cannot look at its left. It always searches in the leftmost column of the table array and returns a value from a column to the right.
- You can’t have duplicate values in the leftmost column of the lookup range. If the lookup column contains duplicate values, VLOOKUP will match with the first value only.
- The VLOOKUP function is case-insensitive, meaning that uppercase and lowercase characters are treated as equivalent. To distinguish the letter case, use case sensitive VLOOKUP formulas.
- Remember about the importance of the last parameter. Use TRUE for approximate match and FALSE for exact match.
- When searching for approximate match, make sure the data in the lookup column is sorted in ascending order.
- If the lookup value is not found, a #N/A error is returned.
- When referring to the lookup table, you want absolute cell references when you copy the VLOOKUP formula to other cells.