Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. 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: Formatting Canadian Postal Codes.

Formatting Canadian Postal Codes

Written by Allen Wyatt (last updated April 24, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


5

In Canada, postal codes consist of six characters with a space in the middle: a letter, a number, a letter, a space, a number, a letter, and a final number. Thus, A1B 2C3 is a properly formatted postal code. If you are retrieving postal codes from an external database, they might not have the required space in the middle. Excel makes it easy to add such a space.

Let's assume that the improperly formatted postal codes are in column C. In column D you could use a formula such as the following:

=LEFT(C12,3) & " " & RIGHT(C12,3)

This formula uses string-manipulation functions to place a space in between the first and last three characters. Thus, if C12 contained A1B2C3, then the cell with this formula would display A1B 2C3.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11167) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Formatting Canadian Postal Codes.

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

Locating a Single-Occurrence Value in a Column

Given a range of cells containing values, you may have a need to find the first value in the range that is unique. This ...

Discover More

Printing a List of AutoCorrect Entries

Want a printed record of the AutoCorrect entries you've created in Word? There is no built-in way to do it, but you can ...

Discover More

Automatic Text in an E-mail

When creating an e-mail address hyperlink using the Insert Hyperlink dialog box, Excel allows you to enter a subject for ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (ribbon)

Condensing Sequential Values to a Single Row

If you have a bunch of ZIP Codes or part numbers in a list, you may want to "condense" the list so that sequential series ...

Discover More

Adjusting Test Scores Proportionately

Teachers often grade on what is affectionately referred to as "the curve." The problem is, it can be a bit difficult to ...

Discover More

Solving a Quadratic Equation

One of the staples of high school algebra classes is the quadratic equation. If you need to solve such equations in ...

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 six minus 4?

2023-11-18 09:47:01

Kurt Holzman

Thank you for this tip. If you change location to 'English (United States)' to 'English (Canada)' the only options Excel offers are Phone Number or Social Insurance Number. This tip is very helpful.


2021-05-09 08:04:20

Rod Grealish

UK postcodes can have two to four characters before the space, such as L1 for Liverpool 1 and G3 for Glasgow 3. The Wikipedia article on UK postcodes states that the following are the valid formats for UK postcodes.

AA9A 9AA
A9A 9AA
A9 9AA
A99 9AA
AA9 9AA
AA99 9AA

Rod


2021-05-02 12:13:31

Willy Vanhaelen

Here is even a one-liner version of my macro:

Sub AddSpaces()
Selection = Evaluate(Replace("LEFT(@,3)&"" "" & RIGHT(@,3)", "@", Selection.Address))
End Sub


2021-04-24 12:42:28

Willy Vanhaelen

@Hazel Kohler
The formula can be shorter:
=LEFT(A2,IF(LEN(A2)=6,3,4))&" "&RIGHT(A2,3)

@TWIMC
If you prefer to do it without helper column you can use this macro which does the changes right in your postal codes column:

Sub AddSpaces()
Dim cell As Range
For Each cell In Selection.Cells
cell = Left(cell, 3) & " " & Right(cell, 3)
Next cell
End Sub

To use it, select the postal codes you which to change and run the macro.


2021-04-24 08:31:52

Hazel Kohler

Postcodes in the UK can have 3 or 4 characters in the first group, but always 3 characters in the second group, after the space (e.g. AB1 1AB, or AB12 1AB). Adding an IF condition to the formula takes this into account - in my example, the code is in AA: IF(LEN(A2)=6,(LEFT(A2,3)&" "&RIGHT(A2,3)),(LEFT(A2,4))&" "&RIGHT(A2,3))


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.