VLOOKP Function: The excel VLOOKUP function looks-up a specified value in the first column of the table array and returns a corresponding value in the same row from a specified column. This is a vertical lookup wherein the lookup value and the corresponding values are located in columns. Syntax: VLOOKUP(value_to_lookup, table_array, column_number, exact_match) 1. value_to_lookup is the value to search or lookup in the first column of the table_array and should not be smaller than the smallest value in the first column else the function returns the error value of #N/A. 2. table_array is two or more columns of data, wherein text values are not considered case-sensitive. 3. column_number is the column number in the table_array from which the corresponding value is returned, starting from 1. Entering a number greater than the number of columns in the table_array will return the error value of #REF!. 4. exact_match (optional argument) is a logical value which determines whether the function will search to find an exact match or an approximate match for the value_to_lookup: (i) if omitted or TRUE, then while searching in the first column of the table_array, if an exact match is not found it searches for the next largest value which is less than the value_to_lookup. In this case the values in the first column should be sorted in ascending order. (ii) if FALSE, only the exact value_to_lookup is searched for and the first column need not be sorted. On not finding an exact match the function returns the error value of #N/A. 5. If the value_to_lookup is a numerical or date value, ensure that the data in the first column of the table_array is not formatted as text. Wildcard characters of question mark (?) and asterisk (*) can be used if the value_to_lookup is text and an exact match is being searched for. —————————————————————————————————————————-























