formula to return a $ amount for a range of %

  • Thread starter michelledean via OfficeKB.com
  • Start date
M

michelledean via OfficeKB.com

I am currently working on bonus items and my criteria is as follows:

Percentage Bonus amount
78.0% or more $4,000
76.0% - 77.99% $3,000
74.0% - 75.99% $2,000
72.0% - 73.99% $1,000
71.99% or less $0.00

Cell D in excel has the % and cell E will need to return the dollar amount...
can you provide a formula that would return an amount for the corresponding
bonus amount? Help is much appreciated.
 
M

Max

Another way using VLOOKUP

Assume lookup percentages in D2 down

In E2:
=VLOOKUP(D2,{0,0;0.72,1000;0.74,2000;0.76,3000;0.78,4000},2)
Copy E2 down
 

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