[Excel] Function: VLOOKUP

[Excel] Function: VLOOKUP

VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)

The first parameter: the value to be searched.
The second parameter: the searched area. It is recommended to use an absolute reference to indicate the searched area, which is similar to "$A$2:$f$12"
. The third parameter: the column of the search range, which is not The default number of excel columns, starting from 1.
The fourth parameter: exact or fuzzy matching, true/1 is approximate matching, false/0 exact matching

Note: You can only search from left to right , but not from right to left reverse search, that is, you need to put the column with the searched value in the first column of the search area

Guess you like

Origin blog.csdn.net/debimeng/article/details/109729692