UPS furnishes a text file with ZipCode ranges associated with a service code (URC.txt). I need to split out the range into a service code DB with each individual ZipCode associated with a singular value for lookup-printing on a label. How can we automate this process as manually, its quite cumbersome and time-consuming and the file is updated periodically.
file resembles
"US","01051","01053"," MA 011 9-05"
"US","01054","01054"," MA 011 9-03"
"US","01056","01059"," MA 011 9-02"
"US","01060","01063"," MA 011 9-01"
Is there a convenient calculation to split out these ranges into a file with fields:
Country Zip Service Code
US 01051 MA 011 9-05
US 01052 MA 011 9-05
US 01053 MA 011 9-05
US 01054 MA 011 9-03
US 01056 MA 011 9-02
US 01057 MA 011 9-02
US 01058 MA 011 9-02
US 01059 MA 011 9-02
US 01060 MA 011 9-01
etc
Thanks in advance...Stephen