• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Show the Home Address on a Contact Form by Default

Slipstick Systems

› Outlook › People › Show the Home Address on a Contact Form by Default

Last reviewed on August 29, 2024     19 Comments

If you enter a Home address for most people, but not a Business address, you may want the Home address to appear by default when you open a new Contact item. This is very simple to accomplish with a custom Contact form in all newer Outlook versions.

Use this method to change which four phone fields are shown by default

Outlook 2007, 2010 and 2013

While the basic steps are the same for all versions of Outlook, the menus are different in Outlook 2007 and up.

If using Outlook 2007 and up, you need to show the Developer Ribbon to see the Publish options. From Outlook 2007's Office orb (formerly File menu) click the Editor options button. add a check to 'Show developer tab' is in the Popular tab section and return to Outlook. Select the Developer tab on the ribbon and publish the form.

In Outlook 2010 and up, go to File tab, Options, Customize Ribbon and enable the developer tab (on the right side of the dialog.) Return to Outlook and use the Publish command on the now-visible Developer ribbon.

To Create a custom Contact form:

  1. Switch to the Contacts folder.
  2. Open a new contact.
  3. Switch the address selector from Business to Home.
  4. Add a check to the box to use it as the default mailing address.
  5. Choose Developer | Publish | Publish Form As .
  6. The Publish Form As dialog should show the form as being published in Outlook Folders, under Contacts.
    Save form

    If it doesn't show the Contacts folder as the publication location, you'll need to use the Look In drop-down list and Browse button to get to the Contacts folder.

  7. Enter a name for your form, then click Publish
  8. Set the Display name to Home.
  9. Click Publish.

Under the New Items button menu in the Contacts folder, the new form will be listed on the Custom Forms menu. Click this to bring up a new Contact item, showing the Home address box.

If you want to use this as the default for all new contacts, see To apply a new form to a folder.

How to set the Home address as default

This video was recorded in Outlook 2010, but the steps are similar in all versions, only some menus have changed.

Outlook 2003 and older

To Create a custom Contact form:

  1. Switch to the Contacts folder.
  2. Open a new contact.
  3. Switch the address selector from Business to Home.
  4. Add a check to the box to use it as the default mailing address (required for Outlook 2002 and above).
  5. Choose Tools | Forms | Publish Form.
  6. The Publish Form As dialog should show the form as being published in Outlook Folders, under Contacts. That's what you want to do. If it doesn't show the Contacts folder as the publication location, you'll need to use the Look In drop-down list and Browse button to get to the Contacts folder.
  7. Set the Display name and Form name to Home.
  8. Click Publish.

Under the Actions menu in the Contacts folder, you should now see a new entry at the bottom -- New Home. Click this to bring up a new Contact item, showing the Home address box.

Using the Custom Form

If you don't want to create your own form, download a sample form. You'll need to open the .oft file and publish it.

To make your new form the default for your Contacts folder, see To apply a new form to a folder.

To convert existing contacts to use the new form, use DocMessageClass or a VBA macro.

Change the mailing address on selected contacts using VBA

You can use a VBA macro to change the address that is used for the mailing address. Select the contact(s) that need changed and then run the code.

Note: this code is my super-duper bulk contacts changer code. You can use the code to change any contact field by replacing the fields between With objContact and End With.

A PowerShell version is at Change the Mailing Address Selector Using PowerShell

Public Sub ChangeMailingAddress()
' fromhttp://slipstick.me/dk

    Dim Session As Outlook.NameSpace
    Dim currentExplorer As Explorer
    Dim Selection As Selection
    Dim currentItem As Object
    Dim folder As Outlook.folder
    
    Dim obj As Object
    Dim strFirstName As String
    Dim strLastName As String
    Dim strFileAs As String

    Set currentExplorer = Application.ActiveExplorer
    Set Selection = currentExplorer.Selection

    On Error Resume Next

    For Each obj In Selection
    Set folder = currentItem.Parent
        'Test for contact and not distribution list
        If obj.Class = olContact Then
            Set objContact = obj

            With objContact
            'valid choices are olBusiness, olHome, or olOther
                .SelectedMailingAddress = olBusiness
                .Save
            End With
        End If

        Err.Clear
    Next

    Set Session = Nothing
    Set currentExplorer = Nothing
    Set obj = Nothing
    Set Selection = Nothing
    Set currentItem = Nothing
    Set folder = Nothing
End Sub

More Information

More Bulk Change Contact articles at Slipstick.com:

  • Bulk Change Contact's FileAs Format to Match Outlook's Default Setting
  • Bulk Change File As Format for Contacts
  • Bulk Move Phone Numbers to a Different Phone Field
  • Macro to Swap First and Last Name Fields
  • Show the Home Address on a Contact Form by Default
  • Update Contact Area Codes
  • Update Contacts with a New Company Name and Email Address

Microsoft Outlook Contacts Issues

  • Designing Microsoft Outlook Forms
  • Show the Home Address on a Contact Form by Default was last modified: August 29th, 2024 by Diane Poremsky
    Post Views: 96

    Related Posts:

    • Change the Mailing Address Using PowerShell
    • How to Show Appointments as "Free" by Default
    • While you can't the business card layout used by existing contacts
      Using Custom Business Cards
    • How to Set a Custom Form as the Default for a Folder

    About Diane Poremsky

    A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

    Comments

    1. Jonathan says

      February 15, 2016 at 12:43 pm

      I realize this post is pretty old, but I found it very useful anyway, thanks (especially since I am still using Outlook 2010).

      The only issue is, like another poster below, for some reason, new contacts created using the newly published form are given the "Post" icon rather than the "Contact" icon.

      Is there a way to publish a form that assigns the "Contact" icon to the contact instead? Is there at least a way to change the icon of the contact once it's been created?

      I can't really tell if it really matters what icon Outlook assigns to new contacts.
      You don't see the icon in Business Card view, only in List view.
      Further, in List view, you could always remove the icon column if you wanted.

      Still, I can't help but wonder if there is some difference, since Outlook decides to assign the "Post" icon to contacts, instead of the regular "Contacts" icon.

      Any ideas?

      Thanks.

      Reply
      • Diane Poremsky says

        February 17, 2016 at 1:03 am

        The icon only matters because its ugly. :) You can change the icon on the Properties page when designing the form. use the icon in the FORMS folder in your installation - in Outlook 2016, it's at C:\Program Files (x86)\Microsoft Office\root\Office16\FORMS, under the language id folder (US English is 1033).

        Reply
    2. Nolan Kienitz says

      June 17, 2015 at 6:14 am

      As long as I select the default form for the contact it works fine. If I go through the routine to save a template with the home address as default ... when I try to use that new form I get the error message.

      I have two laptops and it only does it on one of them. The other one works fine. They both have the same updates, but maybe something hiccuped on one.

      Reply
    3. Nolan Kienitz says

      June 16, 2015 at 10:44 pm

      All of a sudden I get the message: "The form required to view this message cannot be displayed. Contact your administrator." I've been using the modified template for the home address as the default and it worked fine. Now I get the message above. If I go back to properties to choose IPM-Contact then Outlook-2010 is happy again. Have I done something with my Outlook or has some recently downloaded MS patch messed things up?

      I'll keep digging to see if I can come up with something, but so far I've not had any luck. I've re-saved the template via Publish, etc., etc.. as well with no joy.

      Thanks in advance.

      Reply
      • Diane Poremsky says

        June 17, 2015 at 1:25 am

        Either the form is corrupt or an update messed something up, but if you resaved it, it's probably not corrupt. The only change was the home address as default?

        Reply
    4. Micki Schossberger says

      February 8, 2014 at 12:22 am

      Actually my screen is 15.6", but closing the ribbon worked. Thank you!

      Reply
    5. Micki Schossberger says

      February 7, 2014 at 7:30 pm

      Is there any way to make the address box on the contact form show in order to edit it if it is off screen?

      Reply
      • Diane Poremsky says

        February 7, 2014 at 8:20 pm

        Sounds like you have a small tablet or are using low resolution. The form was designed for no less than 1024x768 and that doesn't work well on small screens. Unfortunately, if the form is full screen, you can close the ribbon to get a little more space. If that is not enough, you need to change the resolution or create a custom contact form with the fields you use most in view.

        Reply
    6. Stephen Levitus says

      January 20, 2014 at 11:38 pm

      Thanks! I'l give it a shot and let you know how it turns out.

      Reply
    7. Stephen Levitus says

      January 20, 2014 at 12:19 pm

      I have a reverse issue. My Outlook 2010 Contacts shows the home address as the default mailing address and I'd like it to show the Business Address as default mailing address instead. How can I accomplish this.

      Reply
      • Diane Poremsky says

        January 20, 2014 at 11:05 pm

        It sounds like theyt were saved with the home address set as the mailing address. You can use the macro at https://www.slipstick.com/outlook/contacts/show-the-home-address-on-contact-form/ to make the change on current contacts. New contacts should default to the address you enter first and you can select a different one when creating the contact.

        Reply
    8. David MacCarthy says

      November 3, 2013 at 5:13 am

      I've created the new form ok. However, when I use it, the resulting new contacts show in the Contacts folder with a different icon. This seems to be the result of the new Form having ".Home" added to the "IPM.Contact" message class. Is there a way to assign the standard icon to the new form.

      Reply
    9. Larry Bem says

      December 1, 2012 at 3:00 am

      Thank you for taking the time to detail how to publish a new "Home" form in Contacts (simply)
      - Larry Berm

      Reply
    10. Karen Hurley says

      July 2, 2012 at 3:11 pm

      How do I (where do I) put an address in on the contact form?

      Reply
      • Diane Poremsky says

        July 2, 2012 at 3:34 pm

        Mailing address? You should have a box for the mailing address on the bottom left, although it might be off screen if you use a netbook with a screen with less than about 600 pixels high.

        Address box in a contact

        Reply
    11. Sam Spagnola says

      June 22, 2012 at 7:35 am

      I have tried this multiple times using Outlook 2010. However, there is no entry for "new home" appearing on the Action bar.

      Reply
      • Diane Poremsky says

        June 22, 2012 at 6:54 pm

        The New Home form won't show on the ribbon until you set it as default and refresh the folder (switch to one folder, then back to the contacts folder). I uploaded a new video that was created in Outlook 2010, it shows the exact steps for Outlook 2010.

        Reply
    12. mary ramsey says

      December 4, 2011 at 7:53 am

      I tried, but once I selected and checked HOME, could not find tools. Oh well. Thanks for trying to help. I am abysmally ignorant relative to computers.

      Nighty night

      Reply
      • Diane Poremsky says

        December 4, 2011 at 8:48 am

        What version of Outlook do you use?

        Reply

    Leave a Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    Visit Slipstick Forums.
    What's New at Slipstick.com

    Latest EMO: Vol. 31 Issue 7

    Subscribe to Exchange Messaging Outlook






    Support Services

    Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

    Our Sponsors

    CompanionLink
    ReliefJet
    • Popular
    • Latest
    • Week Month All
    • Use Classic Outlook, not New Outlook
    • How to Remove the Primary Account from Outlook
    • Reset the New Outlook Profile
    • Disable "Always ask before opening" Dialog
    • How to Hide or Delete Outlook's Default Folders
    • This operation has been cancelled due to restrictions
    • Change Outlook's Programmatic Access Options
    • Use Public Folders In new Outlook
    • Removing Suggested Accounts in New Outlook
    • How to Delete Stuck Read Receipts
    • Sync Issues and Errors with Gmail and Yahoo accounts
    • Error Opening iCloud Appointments in Classic Outlook
    • Opt out of Microsoft 365 Companion Apps
    • Mail Templates in Outlook for Windows (and Web)
    • Urban legend: Microsoft Deletes Old Outlook.com Messages
    • Buttons in the New Message Notifications
    • Move Deleted Items to Another Folder Automatically
    • Open Outlook Templates using PowerShell
    • Count and List Folders in Classic Outlook
    • Google Workspace and Outlook with POP Mail
    Ajax spinner

    Recent Bugs List

    Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

    For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

    Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

    Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

    Office Update History

    Update history for supported Office versions is at Update history for Office

    Outlook Suggestions and Feedback

    Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

    Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

    Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

    Other Microsoft 365 applications and services




    New Outlook Articles

    Sync Issues and Errors with Gmail and Yahoo accounts

    Error Opening iCloud Appointments in Classic Outlook

    Opt out of Microsoft 365 Companion Apps

    Mail Templates in Outlook for Windows (and Web)

    Urban legend: Microsoft Deletes Old Outlook.com Messages

    Buttons in the New Message Notifications

    Move Deleted Items to Another Folder Automatically

    Open Outlook Templates using PowerShell

    Count and List Folders in Classic Outlook

    Google Workspace and Outlook with POP Mail

    Newest Code Samples

    Open Outlook Templates using PowerShell

    Count and List Folders in Classic Outlook

    Insert Word Document into Email using VBA

    Warn Before Deleting a Contact

    Use PowerShell to Delete Attachments

    Remove RE:, FWD:, and Other Prefixes from Subject Line

    Change the Mailing Address Using PowerShell

    Categorize @Mentioned Messages

    Send an Email When You Open Outlook

    Delete Old Calendar Events using VBA

    VBA Basics

    How to use the VBA Editor

    Work with open item or selected item

    Working with All Items in a Folder or Selected Items

    VBA and non-default Outlook Folders

    Backup and save your Outlook VBA macros

    Get text using Left, Right, Mid, Len, InStr

    Using Arrays in Outlook macros

    Use RegEx to extract message text

    Paste clipboard contents

    Windows Folder Picker

    Custom Forms

    Designing Microsoft Outlook Forms

    Set a custom form as default

    Developer Resources

    Developer Resources

    Developer Tools

    VBOffice.net samples

    SlovakTech.com

    Outlook MVP David Lee

    Repair PST

    Convert an OST to PST

    Repair damaged PST file

    Repair large PST File

    Remove password from PST

    Merge Two Data Files

    Sync & Share Outlook Data

    • Share Calendar & Contacts
    • Synchronize two computers
    • Sync Calendar and Contacts Using Outlook.com
    • Sync Outlook & Android Devices
    • Sync Google Calendar with Outlook
    • Access Folders in Other Users Mailboxes

    Diane Poremsky [Outlook MVP]

    Make a donation

    Mail Tools

    Sending and Retrieval Tools

    Mass Mail Tools

    Compose Tools

    Duplicate Remover Tools

    Mail Tools for Outlook

    Online Services

    Calendar Tools

    Schedule Management

    Calendar Printing Tools

    Calendar Reminder Tools

    Calendar Dates & Data

    Time and Billing Tools

    Meeting Productivity Tools

    Duplicate Remover Tools

    Productivity

    Productivity Tools

    Automatic Message Processing Tools

    Special Function Automatic Processing Tools

    Housekeeping and Message Management

    Task Tools

    Project and Business Management Tools

    Choosing the Folder to Save a Sent Message In

    Run Rules on messages after reading

    Help & Suggestions

    Submit Outlook Feature Requests

    Slipstick Support Services

    Buy Microsoft 365 Office Software and Services

    Visit Slipstick Forums.

    What's New at Slipstick.com

    Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
    Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
    Outlook & iCloud Issues | Outlook Apps
    EMO Archives | About Slipstick | Slipstick Forums
    Submit New or Updated Outlook and Exchange Server Utilities

    Send comments using our Feedback page
    Copyright © 2026 Slipstick Systems. All rights reserved.
    Slipstick Systems is not affiliated with Microsoft Corporation.