Vlookup with 2 Conditions

K

Kathy - Lovullo

I am trying to figure out how to perform a Vlookup with 2 Conditions.

In sheet1 I have a rate table similar to the following:
Col A Col B Col C
0.01 2,500.00 16.95%
2,500.01 5,000.00 15.95%
5,000.01 12,000.00 14.45%
12,000.01 20,000.00 11.75%
20,000.01 50,000.00 9.75%

On Sheet 2, I have dollar amounts in column A. If the amount in A is
greater than or equal to Sheet1!A AND Less than or Equal to Sheet1!B, I want
to return the value in Sheet!1C.

Can someone please advise on the best way to write this formula?
 
J

Jim Thomlinson

That can be done with a simple Vlookup using closest match

=vlookup(A1, Sheet1!$A$2:$C$6, 3, true)

or with index match

=INDEX(Sheet1!$C$2:$C$6, MATCH(A1, Sheet1!$A$2:$A$6, 1))

Where your value is in A1 on sheet2
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top