Pricing scale selection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a sliding price scale for transport based upon wgt. The greater the
weight being transported the lower the cost per 100 lbs.
Example:
0 to 664 - flat rate of 35.00
665 to 999 - 5.25
1000 to 2499 - 4.75
2500 to 4999 - 3.00
5000 to 9999 - 2.50
10000 or greater - 1.95

How can I get Excel to automatically select the correct rate when I enter
the wgt of the shipment?
 
One way ..

Assume weights are in A1 down

Put in say, B1:

=VLOOKUP(A1,{0,35;665,5.25;1000,4.75;2500,3;5000,2.5;10000,1.95},2)

Copy B1 down
 
=IF(A1<665,35,LOOKUP(A1,{665,1000,2500,5000,10000;5.25,4.75,3,2.5,1.95})

Vaya con Dios,
Chuck, CABGx3
 
I am having trouble adding a maximum total price to this formula. I want the
calculated total to never exceed 465.00 How can I do that?
 
Back
Top