Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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? |
#2
![]() |
|||
|
|||
![]()
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 -- Rgds Max xl 97 --- GMT+8, 1° 22' N 103° 45' E xdemechanik <atyahoo<dotcom ---- "emerald_dragonfly" wrote in message ... 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? |
#3
![]() |
|||
|
|||
![]()
Hi, ed. Try this: http://www.myexpertsonline.com/freedls/shipwts.zip
Note that I provide a formula to get the rate AND a formula to get the amount to charge for shipping. rate: =IF(C7<665,35,VLOOKUP(C7,Weights!A2:B6,2)) amount: =IF(C8<665,35,VLOOKUP(C8,Weights!A2:B6,2)*C8/100) ******************* ~Anne Troy www.OfficeArticles.com www.MyExpertsOnline.com "emerald_dragonfly" wrote in message ... 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? |
#4
![]() |
|||
|
|||
![]()
=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 "emerald_dragonfly" wrote in message ... 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? |
#5
![]() |
|||
|
|||
![]()
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? "emerald_dragonfly" wrote: 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? |
#6
![]() |
|||
|
|||
![]()
=MIN(YourSumFormula,465)
Vaya con Dios, Chuck, CABGx3 "emerald_dragonfly" wrote in message ... 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? "emerald_dragonfly" wrote: 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Volume and pricing calculations | Excel Worksheet Functions | |||
Chart scale & paper size | New Users to Excel | |||
Excel Charts - Data being Plotted beyond Primary X-Axis Scale | Charts and Charting in Excel | |||
Fit Selection Setting Doesn't Hold | Excel Discussion (Misc queries) | |||
limit cell list selection based on the selection of another list | Excel Worksheet Functions |