getting SCF code from ZIP Code

  • Thread starter Thread starter Keith Radley
  • Start date Start date
K

Keith Radley

I'm looking for a fast way to strip off the first three characters of a zip
code and write it to an adjoining column to get a SCF (US Post Office
Sectional Center Facility) code; which would then let my sort by SCF.
 
You can use the LEFT function to return the left-most characters
of a string. E.g.,

=LEFT(A1,3)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
When you say strip it off do you mean literally do that, or just get a copy
of the first 3 characters. Chip has given you one way, but you can also
copy the entire column to the next column, select it and do data / text to
Columns / fixed width - set the break after the 3rd character and then
choose not to import the 2nd column of data within the wizard.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top