To retrieve the row number which corresponds with a matched value in a lookup, we use the MAX function, along with the IF and ROW functions in Microsoft Excel 2010.
MAX: This function is used to return the largest number in a set of values. It ignores logical values and text.
Syntax of “MAX” function: =MAX(number1, [number2],….)
Example: Range A1:A4contains a list of numbers and we need to return the maximum number.
Follow the below given steps:-
SMALL: - This function is used to return the k-th smallest value in a data set.
Syntax of “SMALL” function: =SMALL (array,k)
Example:Column A contains few numbers, we want to find out the smallest number form the list.
IF: - Checks whether a condition is met and returns one value if True and another value if False.
Syntax of “IF” function =if(logical test,[value_if_true],[value_if_false])
The function will perform a logical test and give the result based on whether its true or false.
For example: Cells A2 and A3 contain the numbers 3 and 5. If the cell contains 3, then the formula should display “Yes” otherwise “No”.
=IF (A1=3,"Yes","No")
ROW: - This function is used to return the row number of a cell reference.
Syntax of “ROW” function: =ROW (reference)
Example: =ROW (A1) would return 1
=ROW (A1:A10) would return 1
=ROW (A1:C10) would return 1
Lets see how we can use the MAX function to pick the number, the IF function will check the logical test and the ROW function will identify the row number that corresponds with a matched value in a lookup.
Let’s take an example to understand how we can retrieve the row number that corresponds with a matched value in a lookup.
To retrieve the row number, we will use the MAX function, along with the IF and ROW functions in Microsoft Excel 2010 and 2013.
We need to search List 1 (column A) for each of the text in column C and retrieve the corresponding row number. In this case, we need to compare the lookup value given in C2 with each entry in column A and find its corresponding row number. This row number has to be returned in E2.
Follow the below given steps:-
Note:- If we change the lookup value, the result will be changed automatically. See the below screenshot – The lookup value has been changed to West, and its corresponding result which is 3 is showing in cell E2.
We can use another formula, to get the same result, follow the below given steps
The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.