Vlookup retrieve value to the right in Excel

For example, I want to enter a Student Name in cell I3 and get the corresponding Percentile Rank information pulled from the table in cell I4 and Student ID information in cell I5..

I can use VLOOKUP for retrieving Percentile Rank value. However, since Student ID column is to the left of Name Column, I am not able to use VLOOKUP.

excel vlookup retrieve value to the right

To do it in Excel, here is the answer:

a) Enter the formula =INDEX(C3:C22,MATCH(I3,D3:D22,0)) in cell I5 where ID for the student selected is required.

The first argument of MATCH "I3" has the Lookup value - the Student name whose ID is to be pulled from the Table.

The second argument of MATCH "D3:D22" is the array range containing the lookup value.

The 3rd argument "0' sets up the function to seek an exact match to the value entered in cell I3.

The Match function returns an Index number of the lookup value in the array.

The Index function then takes this index as its second argument and returns a value from the array specified in its first argument(C3:C22).

excel vlookup retrieve value to the right

 

You can find similar Excel Questions and Answer hereunder

1) How can I filter a table to get all records that have less than a particular value in a specific column?

2) How do I find the median salary of employees with the same skillset in my Organization?

3) Given a raw data Table, how can I find the value of a field for a specific value of another field?

4) Vlookup to return multiple values in same cell in Excel

5) How can I prevent users from entering duplicate values in a range?

6) Vlookup to return max value from multiple hits in Excel

7) Is there a way to get a log value of a number using Excel?

8) How can I add and link a Chart Title to a cell value?

9) I am considering an investment of $500 per month for 3 years @ 6% interest rate. What is the Present Value of investment?

10) Filtering the value field in a pivot table in Excel

 

Here the previous and next chapter