ups zone chart management

jonnybigood

New Member
Joined
Feb 26, 2012
Messages
3
First off I apologize if this has already been figured out. I am trying to figure out a formula that takes a zip code and gives me the zone it falls into. Column A would contain a range that looks like 004-005 and the columns after in the same row would contain the zone. ex: Range Zones 384-385 007 307 207 247 137 107 386-392 006 306 206 246 136 106 393-418 007 307 207 247 137 107 420 006 306 206 246 136 106 421-422 007 307 207 247 137 107 Given the zip code is there a way to look thru these to give the correct zones without using VBA code? Any help would be appreciated. Thanks. Edited to try to show where each new row starts but it deletes my carriage returns. the range can be listed like 000-000 or just 000 if that makes any sense.
 
Last edited:

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Thankyou for replying but I am actually trying to calculate the shipping costs of packages being sent from one zip to another using UPS zone charts. Sorry for the confusion.
 
Last edited:
Upvote 0
I bit of a guess, but may help.

Excel Workbook
ABCDE
1ZIPZoneZipZone
2000-010zone 1010zone 1
3011-018zone 2011zone 2
4019-080zone 3078zone 3
Sheet1
 
Upvote 0
Johnny Bi Good,

I'm needing to do the same thing - calculate UPS ground shipping costs for any two zip codes in the Lower 48. How did you get all the Zone charts? UPS.com only lets you down load one from zip code chart at a time and there are over 700 of them?

Steve
 
Upvote 0
That's what I mean, you have to enter one Origin zip at a time. FedX let's you download all Zips at once (over 700 files). I thought maybe you found a way to do that on UPS.
Thank you for replying!
 
Upvote 0
I bit of a guess, but may help.

Sheet1

ABCDE
1ZIPZone ZipZone
2000-010zone 1 010zone 1
3011-018zone 2 011zone 2
4019-080zone 3 078zone 3

<colgroup><col style="width: 30px; font-weight: bold;"><col style="width: 64px;"><col style="width: 64px;"><col style="width: 64px;"><col style="width: 64px;"><col style="width: 64px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
E2{=INDEX($A$2:$B$4,MATCH(D2,LEFT($A$2:$A$4,3)),2)}
E3{=INDEX($A$2:$B$4,MATCH(D3,LEFT($A$2:$A$4,3)),2)}
E4{=INDEX($A$2:$B$4,MATCH(D4,LEFT($A$2:$A$4,3)),2)}

<tbody>
</tbody>
Formula Array:
Produce enclosing
{ } by entering
formula with CTRL+SHIFT+ENTER!

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4


When i try and use these formulas, I keep receiving an error. What format does the ZIP range need to be in for column A (text,general,number?). Likewise what format does the search zip in column D need to be in on the example above?
 
Upvote 0

Forum statistics

Threads
1,214,921
Messages
6,122,280
Members
449,075
Latest member
staticfluids

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