How this works: The VLOOKUP function might look confusing because it contains four arguments, but it’s straightforward to use. The four arguments for the VLOOKUP function are as follows: lookup_value (required): The value to search for in the first column of the table array. table_array (required) - This is the table of data (a range of cells) that VLOOKUP searches to find the information you need.

The table_array must contain at least two columns of dataThe first column must contain the lookup_value

col_index_num (required) - This is the column number of the value you want to find.

The numbering begins with column 1If you reference a number greater than the number of columns in the table array, the function will return the #REF! error

range_lookup (optional) - Indicates whether or not the lookup-value falls within a range contained in the table array. The range_lookup argument is either “TRUE” or “FALSE.” Use TRUE for an approximate match and FALSE for an exact match. If omitted, the value is TRUE by default. If the range_lookup argument is TRUE, then:

The lookup_value is the value you want to check whether it falls inside a range defined by the table_array.The table_array contains all ranges and a column that contains the range value (such as high, medium, or low).The col_index_num argument is the resulting range value.

The example in the image above uses the VLOOKUP function to find the discount rate depending on the number of items purchased. The example shows that the discount for the purchase of 19 items is 2% because 19 falls between 11 and 21 in the Quantity column of the lookup table. As a result, VLOOKUP returns the value from the second column of the lookup table since that row contains the minimum of that range. Another way to set up a range lookup table would be to create a second column for the maximum, and this range would have a minimum of 11 and a maximum of 20. But the result works the same way. The example uses the following formula containing the VLOOKUP function to find the discount for quantities of goods purchased. =VLOOKUP(C2,$C$5:$D$8,2,TRUE)

C2: This is the lookup value, which can be in any cell in the spreadsheet.$C$5:$D$8: This is a fixed table containing all of the ranges you want to use.2: This is the column in the range lookup table that you want the LOOKUP function to return.TRUE: Enables the range_lookup feature of this function.

Once you’ve pressed Enter and the result returns in the first cell, you can autofill the entire column to look up the range results for the rest of the cells in the lookup column. The range_lookup argument is a compelling way to sort out a column of mixed numbers into various categories. #N/A is the is the “value not available” error and occurs under the following conditions:

The lookup _value is not found in the first column of the table_array argumentThe Table_array argument is inaccurate. For example, the argument may include empty columns on the left side of the rangeThe Range_lookup argument is set to FALSE, and an exact match for the lookup_value argument cannot be found in the first column of the table_arrayThe range_lookup argument is set to TRUE, and all of the values in the first column of the table_array are larger than the lookup_value

#REF! (“reference out of range”) error occurs if the col_index_num is greater than the number of columns in the table_array.