Shipping Calculator

DataBlake

Well-known Member
Joined
Jan 26, 2015
Messages
781
Office Version
  1. 2016
Platform
  1. Windows
Hello,
I have an issue where i have a shipping chart and want to use vlookup on the weight to grab a shipping price. the only thing is that anything past 150 lbs will be charged $0.47 per pound thats over 150. So lets say a have the weight in row B. B2 = 200. If B2 > 150 it needs to grab the value for the weight of 150 (lets say its sheet2!D153) and then add (50*0.47). 50 being the amount over 150 of the weight.

Any help would be greatly appreciated.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
We have a similar tool at work and use INDEX and MATCH to pull the rates through.

Here's an example, weight breaks up top (0-49,50-99,100-149 etc) and rates below

05010015025050010001600.5
0.60.50.40.30.250.20.15

<tbody>
</tbody>

Entering the weight I want a rate for in I1, the following formula returns the rate (0.5 in J1)

=INDEX(A1:G2,2,MATCH(I1,A1:G1))

In case you are unfamiliar "INDEX(A1:G2" defines the range I am looking in, the 2 means i'm looking in the 2nd row, and MATCH(I1,A1:G1) is finding the column for 160.

In the case of multiple rating locations you can substitute the 2 for a second match to return the row number containing the rate for a certain location.
 
Upvote 0
okay yeah i understand this a little, i guess im just struggling with the references/lookup/arrays.
My sheets are column based instead of row based
XnxJWsB
XnxJWsB.png

iR0fb1l.png


So i want the weight (F2 even though i put G2) to match to the "lbs" column (shipping!A:A) and return the value of shipping!B:B
still confused as to how to make that formula you gave me reference that.
 
Upvote 0
i feel like im close with
=INDEX(Shipping!$1:$1048576,0,2,MATCH(G2,Shipping!$1:$1048576))

=INDEX(Shipping!$A$2:$B$151,0,2,MATCH(G2,Shipping!$A$2:$A$151))
also doesn't work
 
Last edited:
Upvote 0
i figured it out!
=INDEX(Shipping!$A$2:$B$151,MATCH(F2,Shipping!$A$2:$A$151),2)
i was under the impression that match was in the area and not the "column" so i just switched rows and columns
 
Upvote 0
just in case this helps people this is my final formula:
=IF(F2>150,((F2-150)*0.47)+Shipping!$B$151,INDEX(Shipping!$A$2:$B$151,MATCH(F2,Shipping!$A$2:$A$151),2))
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,683
Members
449,116
Latest member
HypnoFant

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top