Please Note: This article is written for users of the following Microsoft Excel versions: 2007 and 2010. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Preparing Data for Import into Access.

Preparing Data for Import into Access

Written by Allen Wyatt (last updated July 13, 2022)
This tip applies to Excel 2007 and 2010


5

If you are a database programmer you may sometimes get Excel files that you have to "clean up" to put into Access. Two common problems are caused by Social Security Numbers and ZIP Codes. These are best stored as text in the database, and not as numbers as they often are in Excel. (In Excel the numbers may display properly because of cell formatting, and not because they are stored as text.)

Even when the range is formatted as text in Excel, complete with leading zeroes, Access more often than not converts these values to numbers. However, if the number is preceded with an apostrophe, as for a label, Access will correctly import it as text without the leading apostrophe.

To prepare Social Security Numbers for importing in Access a quick little macro can come in handy—one that makes sure that leading zeros are present and that the apostrophe is in place for the cell. To use the macro, just select the range of Social Security Numbers and then run the macro:

Sub SSN2Text()
    Dim c As Range
    Application.ScreenUpdating = False
    'Format selected cells as text
    Selection.NumberFormat = "@"
    For Each c In Selection
        If Left(c, 1) = "'" Then
            'strip the apostrophe, if any
            c = Mid(c, 2, 99)
        Else
            c = "'" & Right("000000000" & c, 9)
        End If
    Next c
    Application.ScreenUpdating = True
End Sub

The solution for the ZIP Codes is similar in nature. The macro to process ZIP Codes steps through each cell in the selection, formats it as text, adds a leading apostrophe, and plugs in any leading zeroes. The difference is that the macro must also account for instances where there are either five-digit or nine-digit ZIP Codes.

Sub ZIP2Text()
    Dim c As Range
    Application.ScreenUpdating = False
    'Format selected cells as text
    Selection.NumberFormat = "@"
    For Each c In Selection
        If Left(c, 1) = "'" Then
            'strip the apostrophe, if any
            c = Mid(c, 2, 99)
        End If
        If Len(c) <= 5 Then
            c = "'" & Right("00000" & c, 5)
        Else
            c = "'" & Right("00000" & c, 10)
        End If
    Next c
    Application.ScreenUpdating = True
End Sub

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11228) applies to Microsoft Excel 2007 and 2010. You can find a version of this tip for the older menu interface of Excel here: Preparing Data for Import into Access.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Changing AutoComplete Words

AutoComplete allows you to easily complete words you are typing in your document. If AutoComplete is presenting you with ...

Discover More

Reveal Codes in Word

While there are no true Reveal Codes in Word, as in WordPerfect, as they are vastly different word processors, there is a ...

Discover More

Changing Font Sizes

Want to change the size of the font within a worksheet? Excel allows you to choose from a list of sizes, as well as ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (ribbon)

Setting an Upper Threshold for a Cell

Do you want to limit what can be entered into a particular cell in your worksheet? Here are three separate ways you can ...

Discover More

Defeating Date Parsing when Pasting Information

Paste information directly into a worksheet, and you may be surprised that Excel makes some of the data unusable. This ...

Discover More

Quickly Deleting Rows and Columns

Deleting rows or columns is easy when you use the shortcut described in this tip. Just select the rows or columns and ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is seven more than 2?

2018-09-27 17:47:17

Kevin

I agree with Jeff and Rod - something's not right with that SSN2Text script.


2015-02-26 12:12:39

Nora Abbott

If you don't want to use a macro, append an apostrophe to the beginning of the number.
Assume Labels in Row 1 and numbers formatted as text (73023, 43501, 05454, etc.) in Column K with K1 holding the label ZIP. Insert 2 new columns L and M. In L1 and M1, enter some labels such as APOS and NEWZIP. In L2 enter "'" (that's quotes, apostrophe, quotes). In M2, enter the formula =H1&J1. Copy L2 and M2 down the column. Import to Access and delete the fields ZIP and APOS. The NEWZIP field will come in as text, complete with the leading zeros.


2012-01-26 13:44:36

Jeff Crater

Isn't the third parameter in the MID statement unnecessary in this context? If it truly is necessary then why use 99? Most likely a value of 99 would suffice, but wouldn't Len(c)-1 be better?


2012-01-21 13:41:22

Dominick A. Donoflio

Rod is right. Unless I missed something, SSN2TEXT will not add an apostrophe if one is removed at all. Hence the number is left with no apostrophe, defeating the purpose.


2012-01-21 09:02:27

Rod Grealish

In subroutine SSN2Text a leading apostrophe, if present, is removed. Otherwise (Else) a leading apostrophe is added.

In subroutine ZIP2Text the leading apostrophe, if present, is removed. Whether or not a leading apostrophe was removed one is added. This is different from how apostrophes are handled in subroutine SSN2Text.

I think that SSN2Text should be modified by replacing the Else by the End If thus causing the statement

c = "'" & Right("000000000" & c, 9)

to be uncondionally executed i.e. the apostrophe is added whether or not one was removed.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.