167k views
4 votes
In cell B13, create a formula using vlookup function that looks up the value from cell A11 in the range A5:B7

User ProtoVB
by
4.7k points

1 Answer

3 votes

Answer:

=VLOOKUP(A11,A5:B7,5,TRUE)

Step-by-step explanation:

The syntax of VLOOKUP is:

=VLOOKUP(Value to look up, cell range, number of cells to check, returned value)

In this case:

Value to look up = A11

Cell range = A5:B7

Number of cells = 5 ---- this can be any number, but make sure it is large enough.

Returned value = TRUE --- this can be any value; such as 1, 0, FALSE, TRUE.

So, the formula to enter in B13 is:

=VLOOKUP(A11,A5:B7,5,TRUE)

User Bastien Beurier
by
6.0k points