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

Bulk Change Email Display Name Format

Slipstick Systems

› Outlook › People › Bulk Change Email Display Name Format

Last reviewed on August 6, 2019     124 Comments

Applies to: Outlook (classic), Outlook 2007, Outlook 2010, Outlook 365 (Win)

The default email display name in the address book used to be "Full Name (Email1)", "Full Name (Email2)", "Full Name (Email3)" but was changed to "Full Name (email address)". If you upgraded from an earlier version of Outlook, your contacts may use a mix of display name formats. The code below will allow you to easily convert all contacts to a uniform format or remove the address for security reasons, per a discussion in TechNet forums:

Using the File As... format without (email address) displayed, when people forward emails, messages will not contain the email address visible for others, just the display name, or not accessible for worms or other user's mailbox attackers.

This code sample works on the Display name for the default email address (Email1) but can easily be changed to work with Email2 or Email3.

This code sample was created from Change Contact's File As format

To change the File as format on existing contacts, see Bulk Change File As Format for Contacts. Our third "Bulk change Contacts" VBA sample is at Bulk Move Phone Numbers to a Different Phone Field.

The Name column (1) is controlled by the Address book setting. Column 2, the email Display Name, defaults to Full Name (email address) format. The code on this page will change this field.

Address book display names

To change the Name column (1) in Outlook 2010 and newer, you'll start at File, Account Settings, Address book Tab, double click on the Outlook Address book. In Outlook 2007, the options for the Name column format is at Tools, Account Settings, Address book Tab, double click on the Outlook Address book and choose between Full name or File as format.

Note that when you edit a contact's email address, the display name is rewritten using Outlook's default format. You'll need to edit it before saving the contact.

While you can't change the default settings for the Display Name field (it always uses 'Full name (address)' format), you can use VBA to change your contacts so they all use the same format. Your choices are limited to Full name, Last First, FileAs, and Company. You can include the email address by adding this code to the format code: & " (" & .Email1Address & ")".

Default email display name format:
Email display name field on a contact

After running the VBA code below:
A contact after running the VBA code

When you click the To button, the entry in the Address book will now look like this:
Outlook 2010's address book, after running the VBA

Not up to working with VBA code? See Tools for tools that can make this change.

Two formats in the code sample below are less than useful as Display name formats:

strFileAs = .CompanyName & " " & .FullName & " (" & .Email1Address & ")"

Results in a leading space if the Contact does not have a Company listed.

'strFileAs = .FileAs

Uses only the Company name in the display name when the FileAs format is "Company name (Fullname)".

Note: I updated the code below to check for email addresses. If an address does not exist, the contact is skipped.

 

VBA Code to Change the Email Display Name

Press Alt+F11 to open the VBA editor then copy and paste into ThisOutlookSession. Uncomment the strFileAs line that uses the format you desire before running it.

This code was tested with Outlook 2010, 2007, and 2003. (May trigger the Email security prompts in Outlook 2003.)

If you have multiple contacts folders, ChangeEmailDisplayName_SelectedContacts will change the selected contacts. It checks for an email address (If .Email1Address <> "" Then) and only updates contacts with email addresses.

 
Public Sub ChangeEmailDisplayName()
    Dim objOL As Outlook.Application
    Dim objNS As Outlook.NameSpace
    Dim objContact As Outlook.ContactItem
    Dim objItems As Outlook.Items
    Dim objContactsFolder As Outlook.MAPIFolder
    Dim obj As Object
    Dim strFirstName As String
    Dim strLastName As String
    Dim strFileAs As String

    On Error Resume Next

    Set objOL = CreateObject("Outlook.Application")
    Set objNS = objOL.GetNamespace("MAPI")
    Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
    Set objItems = objContactsFolder.Items

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

          With objContact
    
          If .Email1Address <>"" Then
            ' Uncomment the  strFileAs line for the desired format
            ' Add the email address to any string using
            ' the following code:
            ' & " (" & .Email1Address & ")"
                 
             'Firstname Lastname (email address) format
             ' strFileAs = .FullName & " (" & .Email1Address & ")"
                
             'Lastname, Firstname format
              strFileAs = .LastNameAndFirstName
                
             'Company name (email address) format
             ' strFileAs = .CompanyName & " (" & .Email1Address & ")"
                 
             'Comapany Firstname Lastname (email address) format
             'the display name will have a leading space if
             'the contact doesn't have a company name
             'strFileAs = .CompanyName & " " & .FullName & " (" & .Email1Address & ")"
                


             'File As format
             'Does not support Company (Fullname) format. 
             'Only Company name is used in the display name
             'strFileAs = .FileAs
                
             .Email1DisplayName= strFileAs

             .Save
           End If
          End With
        End If

        Err.Clear
    Next

    Set objOL = Nothing
    Set objNS = Nothing
    Set obj = Nothing
    Set objContact = Nothing
    Set objItems = Nothing
    Set objContactsFolder = Nothing
End Sub

How to use the Macro

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 and newer, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s at Tools, Macro Security. If Outlook tells you it needs to be restarted, close and reopen Outlook. Note: after you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Now open the VBA Editor by pressing Alt+F11 on your keyboard.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.
  3. Click the Run button in the VBA editor to run it, or if you need to run this frequently, add a button for the macro toyour ribbon.

More information as well as screenshots are at How to use the VBA Editor.

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
Bulk Change Email Display Name Format was last modified: August 6th, 2019 by Diane Poremsky
Post Views: 69

Related Posts:

  • Bulk Change File As Format for Contacts
  • Use PowerShell to Bulk Change Contacts
  • Update Contacts with a New Company Name and Email Address
  • Bulk Change Contact's FileAs Format to Match Outlook's Default Setting

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. Jimmy says

    February 10, 2022 at 7:47 pm

    Diane,

    Came across your script and it works beautifully. I do have a question hopefully, you might be able to help me out or point me to the right source.

    We recently migrated from Google Workspace to MS 365 with Exchange online. All of my contacts migrated fine however, opening a contact, the contact's email address is in email3 instead email1. Is there a script/tool that I can run/use to copy email addresses from email3 to email1?

    Thanks.
    Jimmy

    Reply
  2. George says

    January 17, 2022 at 9:38 pm

    Thanks so much for this, this worked perfectly.

    If I want to have the "Display As" to be "FirstName and Last Name" rather than "Lastname and firstname" how do I go about doing that?

    Reply
    • Diane Poremsky says

      January 17, 2022 at 10:57 pm

      You'd use :
      strFileAs= .firstname & " " & .lastname

      or
      strFileAs = .fullname
      

      Reply
  3. D K says

    July 24, 2020 at 10:33 am

    Your original code worked perfectly; however, I've got a number of contacts with no company listed. I tried embedding a second if statement so I don't get empty "()" at the end of some contacts, but I get a Compile Error: End With without With. Modified code is below. What am I missing?

         With objContact
       
         If .Email1Address <> "" Then
         If .CompanyName <> "" Then
             
           'Firstname Lastname (Company) format
           strFileAs = .FullName & " " & "(" & .CompanyName & ")"
                   
           .Email1DisplayName = strFileAs

           .Save
           
          ElseIf .Email1Address <> "" Then
          If .CompanyName = "" Then
          
          'Firstname Lastname format
           strFileAs = .FullName
           
           .Email1DisplayName = strFileAs

           .Save
           
           End If
          
         End With
        End If

        Err.Clear
      Next

      Set objOL = Nothing
      Set objNS = Nothing
      Set obj = Nothing
      Set objContact = Nothing
      Set objItems = Nothing
      Set objContactsFolder = Nothing
    End Sub

    Reply
    • Diane Poremsky says

      July 24, 2020 at 4:10 pm

      it looks like it's missing an if -

             End If
       end if     
           End With
          End If

      (the last end if is not needed if there is not an IF line before the With line. )

      Reply
      • D K says

        July 24, 2020 at 10:30 pm

        Thanks for the quick reply. Unfortunately, I'm still getting the same error message. I tried changing the closing argument to:

            End If
            End If
           End With
        End If

        When that did not work, I tried:

            End If
            End If
           End With

        I received the same error message every time.

      • Diane Poremsky says

        July 25, 2020 at 12:02 am

        I got it to work with these lines.

           .Save
            
            End If

          End If
           End If
           End With
          Err.Clear
          End If
         Next

      • D K says

        August 7, 2020 at 4:53 pm

        Thanks!

        One final question, does this code only work on contacts stored in an Outlook/microsoft account? I have my icloud email and contacts set up in Outlook 2010. The code work fine to change names for all my work contacts in my Exchange account, but when I run the macro on my iCloud contacts, it doesn't change anything.

  4. Guillermo Barquero says

    March 6, 2019 at 4:52 pm

    Thank you so much!!!! This saved me (and, in turn, my grandparents) so much time! It's also given me a chance to take a look at visual basic macros, thanks again for broadening my horizon!

    Reply
  5. Emmet H says

    March 11, 2017 at 6:55 pm

    Hi all,

    I've just run this code and it's worked exactly as I think it should have in that all my contacts Display As fields are now "last name, first name".

    The reason I'm unsure if this is the outcome that is expected is that this is my first time ever running a macro or using VBA. For that reason also I'm not sure how to change the code to get what I would like, and wouldn't even be confident enough to understand the required changes even if someone has already posted it here (apologies if that's the case and I'm going over old ground).

    What I would like to do is change all my contacts Display As fields to "Full Name - Company (email)". How should I change the code (currently exactly a is above) to achieve this?

    Any help would be very much appreciated.

    Reply
    • Diane Poremsky says

      March 12, 2017 at 1:05 pm

      if you want fullname - company (email) and its not a default format, you need to the fields together:
      strFileAs = .fullname & " - " & .companyname & "(" & .email1address & ")"

      you can test it without change anything first by replacing this line:
      .Email1DisplayName= strFileAs
      with
      debug.print strfileas
      Then View menu > Immediate window before running the macro.
      You'll see the results in the VBA editor.

      Reply
  6. Paul Nielsen says

    January 11, 2017 at 9:40 am

    Diane - I recently imported my contacts into a new Outlook 365 account and the sorting and view are different. The card used to show Last Name, First Name followed by Company Name (in the grey area) and then in the card Display As, the Full Name (email address). I tried running a few of your fixes but obviously don't know what I am doing. Please help!

    Reply
    • Diane Poremsky says

      March 12, 2017 at 1:18 pm

      Sorry I missed this earlier. Did you get it straightened out? You need to open one contact then click the Full Name button to see if they are in the right fields. If so, the problem is the view - I'd try resetting it or customizing it.

      Reply
  7. T. J. says

    September 15, 2016 at 11:45 am

    outlook 2016 will not send emails using outlook.com with email address in "display as". how do I remove them?

    Reply
    • Diane Poremsky says

      September 18, 2016 at 12:53 am

      use the macro on this page and either
      strFileAs = .LastNameAndFirstName
      or
      strFileAs = .Fullname

      but... my guess is the problem is something else as Outlook's default is to create the display name in name (address) format.

      Is your account on the new server?

      Reply
  8. ChrisP says

    May 25, 2016 at 4:57 pm

    Hello Diane,

    I tried running the code, but it does not seem to work. It is my first time using VBA and I am not getting any errors when I run it. I think I might be doing something wrong. I currently am running Outlook 2016 with Office. My user has over 1000 contacts and I am unable to get the First Name Last Name to show with the email address in autocomplete when typing in email. There are also times when some addresses do not come up at all when I start typing. By the way, I do have Cached Exchange Mode checked in case you were wondering.

    Reply
    • Diane Poremsky says

      May 26, 2016 at 12:19 am

      Do you have macro security set to low?

      Reply
  9. FredB says

    May 12, 2016 at 11:04 am

    Diane - great code.... but for some reason it did not work for me. The .LastNameandFirstName property did not change the "Display As" name as expected. All of them were changed.... but came out as First Name space Last Name. I also wanted to fix my old Full Name fields so I did modify the code as shown below to do both - the Full Name works great, the Display As not so much. If "Bob X" is the person's name with the Email1 as Bob.X@x.com, the code makes the FullName "X, Bob" but the Display Name comes out as "Bob X(Bob.X@x.com)" instead of "X, Bob (Bob.X@x.com)" which is what I want. Any suggestions on what I am doing wrong? In Office 2010 .
    `Public Sub FixContactNameDisplay()
    Dim objOL As Outlook.Application
    Dim objNS As Outlook.NameSpace
    Dim objContact As Outlook.ContactItem
    Dim objItems As Outlook.Items
    Dim objContactsFolder As Outlook.MAPIFolder
    Dim obj As Object
    Dim strFirstName As String
    Dim strLastName As String
    Dim strFileAs1 As String
    Dim strFileAs2 As String
    On Error Resume Next
    Set objOL = CreateObject("Outlook.Application")
    Set objNS = objOL.GetNamespace("MAPI")
    Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
    Set objItems = objContactsFolder.Items
    For Each obj In objItems
    'Test for contact and not distribution list
    If obj.Class = olContact Then
    Set objContact = obj
    With objContact
    If .Email1Address "" Then
    If .FirstName "" Then
    If .MiddleName "" Then
    strFileAs1 = .LastName & ", " & .FirstName & " " & .MiddleName
    Else
    strFileAs1 = .LastName & ", " & .FirstName
    End If
    Else
    strFileAs1 = .LastName
    End If
    .FullName = strFileAs1
    strFileAs2 = .FullName & " (" & .Email1Address & ")"
    ' Also tried strFileAs2 = .LastName & ", " & .FirstName & " (" & .Email1Address & ")" but that gave the same result
    .Email1DisplayName = strFileAs2
    .Save
    End If
    End With
    End If
    Err.Clear
    Next
    Set objOL = Nothing
    Set objNS = Nothing
    Set obj = Nothing
    Set objContact = Nothing
    Set objItems = Nothing
    Set objContactsFolder = Nothing
    MsgBox "Complete!"
    End Sub

    Reply
    • Diane Poremsky says

      May 12, 2016 at 12:46 pm

      What type of email account? I know Outlook.com accounts only use full name (address) format for the email display.

      Reply
      • FredB says

        May 12, 2016 at 1:05 pm

        Thanks for the quick response - it is a Microsoft Exchange account (company run). Outlook is from Office Professional Plus 2010. Even if it does use the full name (address) format since I changed the Full Name field to Last, First wouldn't it use that? All my settings by the way are for Last, First.

      • Diane Poremsky says

        May 13, 2016 at 9:13 am

        Outlook will use the full name field format until you clear the display name field - then it will use first last, even if full name and file as use last, first. It should honor your edits to the field though. i'll see if i can repro your problem with the macro - it's been awhile since i last used it.

      • FredB says

        June 16, 2016 at 10:56 am

        Diane - any luck with this? Thanks.

      • FredB says

        May 13, 2016 at 8:34 am

        Sorry - did reply but did not show up for some reason. It is a company based Microsoft Exchange type account.

      • Diane Poremsky says

        May 13, 2016 at 9:00 am

        Comments stay in moderation until i have time to answer - otherwise, i'll never find the comments that need answered. :)

  10. Thanks says

    January 7, 2016 at 10:07 am

    Amazing. Thanks. Worked perfectly in Outlook 2016

    Reply
  11. Arcoden says

    November 24, 2015 at 10:28 pm

    Thanks, Diane! Odd that the intermediate step is required, but great that it works!

    Reply
  12. HCKAD says

    October 27, 2015 at 2:53 pm

    Hi Dianne, Great post. I opted to use ContactGenie but can no longer open the program after a clean install on a new hard drive. Have you heard of this issue before? Their tech support is pretty useless. Not very helpful at all. Any thoughts would be appreciated.

    Reply
    • Diane Poremsky says

      October 27, 2015 at 3:03 pm

      Any error messages? What happens when you try? Does it work if you open Outlook using Run as Administrator?

      And just in case it matters, what version of Windows and Outlook?

      Reply
    • Karl Timmermans says

      October 27, 2015 at 4:15 pm

      Am I correct in presuming this is Kelly A (with a period in the User Account Name) D (the KAD portion of HCKAD) in reference to ContactGenie who hasn't responded to the last 2 emails sent this morning (7:54am and 9:41am)? The latter (9:41am) indicating the only likely cause along with a suggested solution barring any other unknown system configuration factors.

      If this is not the same person - first step in getting support is contacting us
      (cgsupport @ contactgenie.com)
      since there is no other outstanding report from anyone regarding a re-install after a hard drive failure/replacement (actually, currently, no other support issues at all for any CG product for that matter).

      Given the comment of "Their tech support is pretty useless" in the above post - suppose we can also ignore the various "Again thanks so much for all of your help!" message portions from your previous responses after submitting other prior support questions.

      __________________________________________________________
      Karl Timmermans [Microsoft Outlook MVP] – The Claxton Group
      "Contact import/export/data management tools for Outlook '2000/2016"
      https://www.contactgenie.com
      https://www.contactgenie.info

      Reply
  13. Dawn says

    September 24, 2015 at 12:03 pm

    WOW Diane you work super fast! Thank you so much!

    Reply
    • Diane Poremsky says

      September 24, 2015 at 2:12 pm

      When it's a fun macro that I think others might need, I can be fast. :)

      Reply
  14. Dawn says

    September 23, 2015 at 7:31 pm

    Diane, do you have code to change multiple email addresses? I have contacts from a company that is changing its name and all employee addresses. I would kill to be able to run a script that would change the domain.com portion of the addresses. Is this possible?

    Thank you!

    Reply
    • Diane Poremsky says

      September 23, 2015 at 9:19 pm

      I don't have a script ready but it should be easy enough... assuming the alias remains the same and all contacts use the same company name, not a variation. I'll put something together.

      Reply
      • Diane Poremsky says

        September 23, 2015 at 10:05 pm

        Here is a macro that will change the company name and email domain
        https://www.slipstick.com/developer/code-samples/update-contacts-with-a-new-company-name-and-email-address/

  15. lockoncomputer says

    August 2, 2015 at 11:10 am

    Excellent! Thank you for sharing to the community - we are indebted to your generosity :)

    My addressbook contained several email addresses without names. The default script put parens around the email in that case. To void that I made this small change:

    replaced
    strFileAs = .CompanyName & " " & .FullName & " (" & .Email1Address & ")"
    with
    If .FullName "" Then
    strFileAs = .CompanyName & " " & .FullName & " (" & .Email1Address & ")"
    Else
    strFileAs = .Email1Address
    End If

    Thank you!

    Reply
  16. Mathew says

    August 1, 2015 at 7:55 am

    All of the group members are in the Contacts folder where the group resides. The contacts were added from the folder into the group. The icon next to their name looks like a business card. Identical to the icon beside their contact in the folder.

    When I hit Update Now nothing happens. If I remove them and add them back the Name is updated like I want it because of the previous script you sent me.

    I would remove and add them but there are lots of groups with thousands of contacts. So I was hoping they would update.

    Thanks for you time. It's really great of you to reply!

    Reply
    • Diane Poremsky says

      August 2, 2015 at 5:34 pm

      Are you selecting the name then hitting update now? I think you need to select the name(s) you want to update.

      Reply
    • Mathew says

      August 3, 2015 at 11:01 am

      I was selecting the names. This looks like the problem I am having:
      https://www.slipstick.com/outlook/contacts/members-contact-group/

      However, I've forwarded the group to myself and then pasted the list from excel into a new group. I see all of these contacts in the contact group I am selecting from but it still does not update them. It's not linking them. It looks like it's just creating them as an address book entry and not linked to the contact. ?

      Reply
  17. Mathew says

    July 31, 2015 at 12:46 pm

    Diane, I got all my contacts updated from this! Thank you so much. The Display As field just like I wanted!

    The problem I have now is that all my contacts are in groups. When I look the groups The name of the contact looks like it's pulling from the Display As field and that has not updated in the groups. When I click update "Update Now" it does not update the name. Is there a way to update the Name for these contact in the groups they belong to?

    Reply
    • Diane Poremsky says

      July 31, 2015 at 11:57 pm

      It sounds like the group members aren't linked to the contacts and are one-off addresses instead. What does the icon next to their name look like?

      Reply
  18. Mathew says

    July 31, 2015 at 10:22 am

    Diane, thank you! this is great. I tested this and it works. I also have a shared contact folder that resides in a Public folder that I am the owner of.

    Can this work to updated contacts in a public folder?

    Thanks

    Reply
    • Mathew says

      July 31, 2015 at 12:48 pm

      I figured this out. I just posted a new question below. thanks. This is great!

      Reply
    • Diane Poremsky says

      August 1, 2015 at 12:08 am

      You can. the version at https://www.slipstick.com/code-samples/ChangeEmailDisplayName_SelectedContacts.txt works with selected contacts in any folder or you could change it to work with all contacts in a selected folder:

      Replace the similar block in the code with this the select the folder and run it.

      On Error Resume Next

      Set folder = Application.ActiveExplorer.CurrentFolder
      For Each obj In folder.Items
      'Test for contact and not distribution list
      If obj.Class = olContact Then
      Set objContact = obj

      Reply
  19. Dan says

    July 29, 2015 at 11:13 pm

    Much appreciated Diane.

    Reply
  20. Dan says

    July 21, 2015 at 9:47 pm

    What I want to do is change the display name of an email item as it appears in the To field in the sent items box after clicking the send button. Reason being that sometimes it shows the name of the person or the name plus email address or just the email address. So, I want to manipulate the Display Name (in the To field) for better managing/sorting my emails. I can do this manually before I send a reply to someone (i.e. Click Reply, then right lick on the recipient's name in the To field, then lick Outlook Properties which pops up a small dialog box. here I can manually alter the Display Name). I'd like to do this automatically either when clicking Reply or Send.

    Reply
    • Diane Poremsky says

      July 29, 2015 at 10:04 pm

      You might be able to do it when you click Reply the problem - i'll take a look.

      Reply
  21. Dan says

    July 21, 2015 at 8:20 pm

    Hello Diane, would you know how I can change the Display Name for the person I am replying to at the time I click the send button? I can use the ItemSend event but which object and which property do I change. I am pretty new to VBA so any help you can provide would be much appreciated.

    Reply
    • Diane Poremsky says

      July 21, 2015 at 9:21 pm

      I'm not sure I understand what you want to do (or why). You want to change their display name in the email message or in their contact?

      Reply
  22. Stu says

    July 1, 2015 at 12:08 am

    Mahalo for responding. thanks to your suggestion i was able to determine what was wrong. I was actually using the vba code to change email display name for multiple contact folders. I assumed that by just selecting the contacts folder that needed to be corrected, when i run the macro it would do as intended, however I realized by the error code, i had to actually select the individual contacts (i selected all the contacts in that specific folder), then the macro did its intended job....

    I again, would like to thank you for your excellent dedication and taking the time to help me and the many others that you have helped here!

    Reply
  23. George Jaajaa says

    June 30, 2015 at 8:39 pm

    Are you able to create a code so that the display name is first name last name, rather than last name, first name

    Reply
    • Diane Poremsky says

      June 30, 2015 at 9:43 pm

      You'd use = .firstnanme & " " & .lastname
      if either field a blank, you'll have a leading or ending space. There is no way to avoid it without using some if statements.

      Reply
  24. Stu says

    June 18, 2015 at 8:33 pm

    Mahalo (thank you) for the code. This is exactly what i was looking for. However, for reasons beyond me..i can't seem to get the macro to run. I have Outlook 2013, macros are enabled. I copied and pasted the code into "ThisOutlookSession". I attempted to run the code "As-Is", but nothing happens. I also edited to reflect
    strFileAs = .LastNameAndFirstName & " (" & .Email1Address & ")"

    I also went through your tutorial and still can't get it to run. No error messages or prompts.

    I would really appreciate your assistance..
    Reply

    Reply
    • Diane Poremsky says

      June 30, 2015 at 10:35 pm

      Remove the on error resume next line and see where it errors.

      Reply
  25. mindjunkies says

    April 10, 2015 at 3:05 am

    Brilliant!! you have made my day!!

    Reply
  26. Jake Walker says

    December 2, 2014 at 12:13 am

    Hi Diane,

    I got everything working. Thank you for your help.

    Kind Regards
    Jake Walker

    Reply
  27. Jake Walker says

    December 1, 2014 at 1:23 am

    Hi Diane,

    Where do I add this? Is my script correct? Am I running it correctly also?

    Could you give me a call to discuss this further?

    Kind Regards
    Jake Walker

    Reply
    • Diane Poremsky says

      December 1, 2014 at 1:52 am

      This will use the File as name and the email display name as their full name.

      Public Sub ChangeEmailDisplayName()
      Dim objOL As Outlook.Application
      Dim objNS As Outlook.NameSpace
      Dim objContact As Outlook.ContactItem
      Dim objItems As Outlook.Items
      Dim objContactsFolder As Outlook.MAPIFolder
      Dim obj As Object
      Dim strFirstName As String
      Dim strLastName As String
      Dim strFileAs As String

      On Error Resume Next

      Set objOL = CreateObject("Outlook.Application")
      Set objNS = objOL.GetNamespace("MAPI")
      Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
      Set objItems = objContactsFolder.Items

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

      With objContact

      If .Email1Address <> "" Then
      'Lastname, Firstname format
      strFileAs = .FullName
      .FileAs = strFileAs
      .Email1DisplayName= strFileAs
      .Save
      End If
      End With
      End If

      Err.Clear
      Next

      Set objOL = Nothing
      Set objNS = Nothing
      Set obj = Nothing
      Set objContact = Nothing
      Set objItems = Nothing
      Set objContactsFolder = Nothing
      End Sub

      Reply
  28. Jake Walker says

    November 30, 2014 at 9:17 pm

    Hi Diane,

    I currently have a user who has 2000+ contacts which need the display name updated. I have been looking at your script but am having some trouble running it. I have opened Microsoft Visual Basic using Alt + F11 then pasted it into TheOutlookSession within the project window. However I believe I'm doing something wrong. Can you please check if my script is correct? Also will this update the File As field? I would like the display contacts to show as First Name, Last Name, Email Address please.

    Public Sub ChangeEmailDisplayName()
    Dim objOL As Outlook.Application
    Dim objNS As Outlook.NameSpace
    Dim objContact As Outlook.ContactItem
    Dim objItems As Outlook.Items
    Dim objContactsFolder As Outlook.MAPIFolder
    Dim obj As Object
    Dim strFirstName As String
    Dim strLastName As String
    Dim strFileAs As String

    On Error Resume Next

    Set objOL = CreateObject("Outlook.Application")
    Set objNS = objOL.GetNamespace("MAPI")
    Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
    Set objItems = objContactsFolder.Items

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

    With objContact

    If .Email1Address <> "" Then
    ' Uncomment the strFileAs line for the desired format
    ' Add the email address to any string using
    ' the following code:
    ' & " (" & .Email1Address & ")"

    'Firstname Lastname (email address) format
    ' strFileAs = .FullName & " (" & .Email1Address & ")"

    'Lastname, Firstname format
    strFileAs = .LastNameAndFirstName

    'Company name (email address) format
    ' strFileAs = .CompanyName & " (" & .Email1Address & ")"

    'Comapany Firstname Lastname (email address) format
    'the display name will have a leading space if
    'the contact doesn't have a company name
    'strFileAs = .CompanyName & " " & .FullName & " (" & .Email1Address & ")"

    'File As format
    'Does not support Company (Fullname) format.
    'Only Company name is used in the display name
    'strFileAs = .FileAs

    .Email1DisplayName= strFileAs

    .Save
    End If
    End With
    End If

    Err.Clear
    Next

    Set objOL = Nothing
    Set objNS = Nothing
    Set obj = Nothing
    Set objContact = Nothing
    Set objItems = Nothing
    Set objContactsFolder = Nothing
    End Sub

    Kind Regards
    Jake Walker

    Reply
    • Diane Poremsky says

      December 1, 2014 at 12:07 am

      This will apply to the File as field name.

      Do you get any error messages? Any red lines? Is macro security set to the lowest level?

      Reply
      • Jake Walker says

        December 1, 2014 at 12:08 am

        Hi Diane,

        I haven't set the macro security to low. is there anyway to update the display names also?

        Kind Regards
        Jake

      • Diane Poremsky says

        December 1, 2014 at 1:21 am

        You can add
        .Email1DisplayName = [desired format]
        to the macro.
        email2 and 3 have their own displayname fields as well.

  29. Adrian Emanuel says

    October 13, 2014 at 12:35 pm

    Hi Diane - sorry total newbie to VBA code here. I want to change all of my contact's display names into the last name, first name format. I have copied the code above into ThisOutlookSession but not sure how to run it - what are the steps i need to take to make these changes?

    Thanks very much in advance

    Reply
    • Diane Poremsky says

      October 13, 2014 at 11:11 pm

      See https://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/ for instructions on how to use the editor. Basically, you change macro security settings, copy the code, choose the display name format and run the macro. last name, first name is the format the macro is configured to use so you just need to run it. The macro will check and update all of the contacts in the default contacts folder.

      Reply
  30. John says

    October 5, 2014 at 1:28 pm

    It's John again; I asked about counting the changes and it worked. Now I want to delete duplicate email addresses--I seem to have a lot. After your "With ObjContact" statement above, I add the following:
    'Delete Duplicate Email Addresses
    If .Email1Address = .Email2Address Then
    .Email2Address = ""
    End If
    It finds the duplicates but it does not erase them. What am I missing about 'blank' values?
    Thanks.

    Reply
    • Diane Poremsky says

      October 6, 2014 at 12:15 am

      Are you saving the contact before moving on to the next one?
      If .Email1Address = .Email2Address Then
      .Email2Address = ""
      .Save
      End If

      Reply
  31. clark says

    September 25, 2014 at 6:31 am

    Hi, I want to add an option that deals with missing fields. For example if there is no first or last name and only a company or vice versa. Of fields are missing I end up with brackets where I don't want them Example: Hybrid (Clark) is company (first name) but if there was no Company I would end up with (Clark). Is there a way to get the code to look at the company and if it is not there remove the brackets? Also can I wrote the code to return the fit two words of a Company name instead of the whole name? Thank you for your help
    Clark

    Reply
    • Diane Poremsky says

      September 25, 2014 at 9:01 am

      you can use if statements - something like
      if .company = "" then
      ' use full name
      else
      ' use this
      end if

      Doing two words is also possible. You need to find the second space and use that to get the company name. This isn't hard using instr, len, and left functions. Longish but not difficult. You need to decide if you want to limit the length of names with only 1 space or use the full name - or better yet, only limit the company name if more than nn characters. This eliminates issues with "A D Smith Inc" getting chopped to A D.
      if .companyname > 30 then
      If ' get the position of second space. if over 30, chop
      else
      'if under 20, get 30 characters
      end if
      end if

      Reply
  32. Graham says

    September 17, 2014 at 9:03 am

    Diane

    Would the scripts have to be in order i.e remove title before the others otherwise the titles would still be listed in the file as and display as

    Reply
    • Diane Poremsky says

      September 17, 2014 at 3:11 pm

      Yes, I think - because most of the name formats include the title. I'd probably stick the .save back in after the title is removed, just to be sure the right value is read.

      Reply
  33. Graham says

    September 17, 2014 at 4:31 am

    Diane

    Thankyou that has now worked as you say it must have been the break

    The only downside is that I will have to run the "files as" & "email display as" scripts again as these fields do not up date. I presume this is because we are just removing the "Mr" and Outlook doesn't see this as actually editing the record

    Is there any way to actually save the scripts so they can be used in future without having to create them each time?

    Regards

    Graham

    Reply
    • Diane Poremsky says

      September 17, 2014 at 7:58 am

      Do you want to run them automatically? They need a trigger, like a task reminder. If you just want them around, ready to use, don't delete them from the VBA editor. Click Save when you close Outlook and are asked about saving the VBA.

      You can combine all 3 changes into one macro
      With objContact

      strFileAs = .LastNameAndFirstName

      .FileAs = strFileAs

      If .Email1Address <>"" Then
      .Email1DisplayName= strFileAs
      End if

      If Left(LCase(.Title), "m") Then
      .Title = ""
      End If

      .Save
      End With

      Reply
  34. Graham says

    September 12, 2014 at 3:48 am

    Diane

    Thank you for the reply

    Do I just amend code to look like this

    Public Sub ChangeEmailDisplayName_Anyfolder()
    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
    If Left(LCase(.Title), "m") Then
    .Title = ""
    .Save
    End If
    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

    If so I get a "cant execute code in break mode error"

    Reply
    • Diane Poremsky says

      September 16, 2014 at 8:52 pm

      yes, that is correct - just tested it on some test contacts i imported that had titles that were annoying me. :)

      You have a break entered - is there a red dot in the margin? click it to remove it.

      Reply
  35. Graham says

    September 9, 2014 at 5:45 am

    Diane

    Is there anyway to remove "mr" or "mrs" from a name.

    Not all instances of a contact have been added with these and wanted to delete so the fields are consistent

    Reply
    • Diane Poremsky says

      September 11, 2014 at 4:40 pm

      You can use the following in the code instead of changing address fields, you'll change the title. It assumes you want to remove Mr, Ms, Mrs but keep other titles. If you want to remove all titles, remove the If and End if lines.

      With objContact
      If Left(LCase(.Title), "m") Then
      .Title = ""
      .Save
      End If
      End With

      Reply
      • Amit says

        February 16, 2017 at 2:21 am

        Hi Diane, this is exactly what I need to do - remove the titles from the email display name, but as a newbie I don't understand where to place the code above. Could you please elucidate? Many thanks!

      • Diane Poremsky says

        March 12, 2017 at 1:13 pm

        Change macro security then press Alt+F11 to open the visual basic editor and if you only need to run the code this one time and don't have other macros, paste the code into thisoutlooksession and don't save it when you close outlook and are asked about saving it.
        More information is at https://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/

  36. chrisbrace says

    September 5, 2014 at 10:58 am

    this worked perfectly, very very useful, thanks. Note I did edit slightly to put angle brackets around the email address instead of curved brackets, this fixed my bouncing email issue caused by outlook 2013 misinterpreting the curved brackets around an email address in the display name and failing to treat it as an email address.

    It does not explain why outlook insists on ignoring the actual email address in its own contact and instead trying to parse the display name to extract the email address!

    Reply
  37. Graham says

    September 2, 2014 at 5:10 am

    Diane

    Thank you that has worked a treat

    Regards

    Graham

    Reply
  38. Graham says

    August 28, 2014 at 1:32 pm

    I am trying to run your script and receive the following error "macros in this project are disabled"

    I am using Outlook 2010 with Office 365

    Reply
    • Diane Poremsky says

      August 28, 2014 at 2:46 pm

      You need to lower macro security in File, Options, Trust Center. I have a tutorial at How to use the VBA editor

      Reply
  39. Clark says

    July 23, 2014 at 10:54 pm

    Hi, I have tried the Macro for Outlook 2013 for "Bulk Change File As Format for Contacts" and it works across all contact groups including Public. Can this macro be reworked to bring up the same set of options 1 to 8 but be applied to the "Email Display Name" field instead? This would solve all my problems. I have undertaken a trial of ContactGenie but they do not have to Option "Company, Full Name". Thank you kindly for your assistance. Clark

    Reply
    • Diane Poremsky says

      July 23, 2014 at 11:40 pm

      I'm not sure I understand. What options do you want to set? you can use .CompanyName & " " & .FullName to create the string that is used for the display name.

      Reply
      • Clark says

        July 24, 2014 at 6:42 pm

        Dear Diane, I have worked it out, I used the method under https://www.slipstick.com/outlook/contacts/bulk-change-outlook-contacts-file-as-format/ and changed all "DisplayAs" to "Email1DisplayName" and works the same by popping up a box of 8 options, I have now added my own custom options for better functionality. All is working well. Thanks

  40. Clark says

    July 23, 2014 at 10:33 pm

    Hi, I have used this in Outlook 2013 and work great on a contact list under my email address. I also have a Public contact list and it doesn't work on that, what do i need o change so i can write a separate Macro for the Public contacts, is there a way of doing this. Thank you so much for your help, this Macro is fantastic at keeping uniform control over a large set of contacts, I really appreciate the help.

    Reply
    • Diane Poremsky says

      July 24, 2014 at 12:50 am

      The version at https://www.slipstick.com/code-samples/change-fileas-format-selected-folder.txt will work on the selected items (use ctrl+A to select all) in any folder. Changing the default contacts folder version to work on a specific folder is also possible - it's a matter of change this line to point to the folder:
      Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)

      Reply
  41. John says

    July 23, 2014 at 10:55 am

    I like it. Would it be hard to count the changes?

    Reply
    • Diane Poremsky says

      July 23, 2014 at 2:31 pm

      no, not really. You just need to do something like after each record is changed.
      lngChanges = lngChanges + 1

      then at the end use msgbox lngChanges to get the value.
      You'll need to dim it as
      Dim lngChanges As Long

      A macro that uses this method is at https://www.slipstick.com/developer/macro-move-aged-mail/ - you can see where the code is placed in it.

      Reply
      • John says

        July 23, 2014 at 3:18 pm

        Great, thanks. Then I can find out what is making the change. I sync my Galaxy S3 cellphone with Outlook through Kies 3. The switch is set to not change Outlook contacts ... I just don't believe it!

      • John says

        July 25, 2014 at 9:02 am

        After a minor tweak it worked like a charm. I needed a test for the current value; otherwise, it was changing all of them. Thanks.

  42. George says

    March 24, 2014 at 9:04 pm

    Diane,
    I sent to you two emails this past weekend seeking help with this macro. I was able to get the macro to run this evening. So I don't think I will need that help. The copy button at the top of the macro that you mentioned in one of your earlier responses did not appear on for me. SO when I copied and pasted the macro code, it went into the
    vba program in the wrong layout. That was the source of my problem. It took me considerable time to figure it out and to remedy the problem. Once I fixed it, the macro ran very quickly and did a very nice job.
    Thanks,
    George

    Reply
  43. George says

    March 23, 2014 at 9:01 am

    This is my first encounter with VBA. I have everything set up to run, but when I click run, I get "invalid Procedure Error." I have no idea how to run or intiate this macro. Would you please advise?
    Thanks,
    George

    Reply
  44. Jeff Squires says

    March 19, 2014 at 6:00 pm

    Diane this is a wonderful piece of code. I'm running Outlook 2013 and it took seconds for your code to make every "display as" field perfectly uniform. This problem has been bugging me for years! Now when I start typing a contact name in an email, Outlook immediately resolves the name properly after a few letters. THANK YOU!!

    Reply
  45. David says

    January 6, 2014 at 6:13 am

    Hi! Is there any option or work around for Outlook Hotmail Connector users? Cheers.

    Reply
    • Diane Poremsky says

      January 7, 2014 at 12:45 am

      No, sorry, there is not.

      Reply
  46. Jim Wimberly says

    November 8, 2013 at 9:33 pm

    Worked perfect for me for Outlook 2010. I preferred Firstname Lastname as my display, so I "un-rem'd" that sentence in the code and rem'd out the Lastname, Firstname section. Excellent resource. thank you.

    Reply
  47. MS says

    November 7, 2013 at 9:50 pm

    I use Outlook 2013 and always use to wonder if there could be a code available to replace the name of the sender (Display Name as your said) with the 'File As' in my address book, so that when I group the mails in a folder by the name, I can easily analyse whatever I need.

    If the sender has not properly configured his email account (or has done in haste) in his mobile device or so, he wouldn't have configured the 'Send as' format and the mobile device' settings would have been configured by default to send the mail as 'Email Address (Email Address)' instead of 'Full Name (Email Address)'.

    I write codes in Outlook but I am more of an amateur only and unaware of what property of a mail item it is and how I look up for the email address in my address book to find the respective 'File As' to replace the same in the mail item's property.

    I would use the same code to modify the existing mails in the folders too. Thanks!

    Reply
  48. W says

    November 6, 2013 at 10:48 pm

    This works great, but won't work on emails sent. E.g if you sent it to Tom Brown (whose email address is tbrown@whatever.com) Whilst it will change the contact, it won't change the email address on an old email you open and print :( Bit silly if you print it out and want to know what TBrown's email address was.

    Reply
    • Diane Poremsky says

      November 7, 2013 at 8:21 am

      Correct, this only applies to the display name format in Contacts, not email. The email gets the display name from the sender and is not affected by the contact's display name format. Did you try hitting Forward (or Reply) then printing the draft copy? In newer versions of Outlook, this should include the email addresses, if not, you could add them - if you need to do it often, a macro can get the address from the message and insert into the draft.

      Reply
  49. MS says

    August 8, 2013 at 1:40 pm

    Awesome! Thanks!

    Reply
  50. Lewis says

    April 25, 2013 at 2:39 pm

    This worked absolutely perfectly, thank you so much!!!!!

    Reply
  51. Tiffany Sawyer says

    April 3, 2013 at 8:03 am

    I'm also a little challenged when it comes to code. Maybe a stupid comment but I don't have an F11 key... how or what should I select? I would like for all my contacts email addresses to be displayed by company name. thanks for your help!

    Reply
    • Diane Poremsky says

      April 3, 2013 at 11:40 am

      You should have an F11 function key - function keys are usually the top row of buttons on the keyboard. But depending on your computer, the keys may be used for something else, like adjusting the volume, dimming the screen, etc., unless you press a function button too.

      Reply
  52. Brenda Morgan says

    January 13, 2013 at 12:33 pm

    OMG this was invaluable! I went nuts trying to find a MS solution. Thank you so much for writing this.

    Reply
  53. Chris says

    December 3, 2012 at 9:51 pm

    Tanks for your quick reply.

    Reply
  54. Chris says

    November 30, 2012 at 10:24 pm

    Hi Diane, Great code. I am looking for a similar code that updates the inbox items. e.g. I have a mailitem with "max@email.com" and a contactitem with the matching address with .DisplayName = "Max". The code should cache the contacts, than parse the mailitems and update the mailitem.Displayname accordingly. By chance you don't know such code, do you? Rgds, Chris

    Reply
    • Diane Poremsky says

      December 1, 2012 at 7:26 pm

      I don't have any code that will do this, sorry.

      Reply
  55. robin says

    October 24, 2012 at 5:40 am

    I simple way to do this that some people my be more comforable with is this - export all the contacts to Excel. May any change youu want, then import the excel document as 'replace.

    Reply
    • Diane Poremsky says

      October 24, 2012 at 8:30 am

      It might be more comfortable for some users but if you customized business cards or added user photos to contacts, importing changes from Excel will remove the images. Exporting/importing has the potential to change formatting in the notes field and remove attachments. If you don't use formulas to change the display names, it will take a lot longer than the macro.

      Reply
  56. Jessie says

    August 21, 2012 at 11:23 am

    Technologically challenged person asking for baby steps here. After I get to the VBA editor, what exactly am I copying and pasting into ThisOutlookSession? Am I copying and pasting all of your lines above including the green ones? I want to display the first and last name only. Which lines do I uncomment and how do I uncomment them? By deleting them? Thank you

    Reply
    • Diane Poremsky says

      August 21, 2012 at 1:53 pm

      At the top right of the Code block is a small toolbar that pops up when you hover over the code. Click the Copy button to copy the code. Paste it into ThisOutlookSession.

      The green lines can stay or go - they are commented out. Remove the ' from in front of the line you want to use. You can certainly delete the lines you aren't using, but it's not necessary as long as they are green.

      For First Last, you would use
      strFileAs = .Firstname & " " & .Lastname

      if you use strFileAs = .FullName, you'd get the middle initial too.

      Reply
  57. Art says

    July 24, 2012 at 5:20 am

    How do I display only the email address in the "display as field."

    Reply
    • Diane Poremsky says

      July 24, 2012 at 2:01 pm

      You can't set that as a default format and you can't use it with hotmail accounts. You'll need to fix each contact as you create them and use the macro to change it for all existing ones.

      to change it using the macro, use strFileAs = .Email1Address

      Reply
  58. Jeff Lloyd says

    July 19, 2012 at 5:57 am

    Worked like a charm! Thanks so much for everything. I can't tell you how frustrated I've been with Outlook since I reinstalled it on my computer last year. I found this site yesterday, and I've now run two of your scripts; I'm now happy with my email again.

    Reply
  59. Jeff Lloyd says

    July 18, 2012 at 10:17 pm

    Wow, that was a quick response! Let me know when the code is fixed and I'll try it again. I just tried it a minute ago because it looked like the code had changed, but I was still getting an error (different error): Compile Error: Syntax Error and it highlights the following lines: Public Sub ChangeEmailDisplayName() -- highlighted in yellow, and Set objOL = CreateObject("Outlook.Application") -- simply outlined. Do you know what the fix is for that?

    Reply
    • Diane Poremsky says

      July 19, 2012 at 5:22 am

      I'll check the code after and see if i can repro. Synxtax error means something is still not right in the code.

      Reply
    • Diane Poremsky says

      July 19, 2012 at 5:27 am

      I missed fixing 4 & quot; - they are double quotes. Fixed now. (this is the one big negative against wordpress.)

      Reply
  60. Jeff Lloyd says

    July 18, 2012 at 7:54 pm

    After I delete the apostrophe from in front of the strFileAs = of strFileAs = .FullName & " (" & .Email1Address & ")" I get an error: Compile error: Expected: end of statement. Any thoughts?

    Reply
    • Diane Poremsky says

      July 18, 2012 at 8:30 pm

      oh, damn wordpress. It messed up the code. I'll fix it.

      Reply
  61. Cynthia says

    January 28, 2012 at 10:08 am

    This was very helpful for one Contact list. I have 4 email accounts in my Outlook 2010. How do I change the Display As for the other Contact folders. This only changed the first (defaul?) folder.

    Reply
    • Diane Poremsky says

      January 28, 2012 at 11:41 am

      https://www.slipstick.com/outlook/contacts/bulk-change-outlook-contacts-file-as-format/ has a sample that uses the selected folder - the code between With objContact and End With is what makes the changes - so you just need to replace the code block between With objContact and End With, with the code block on this page, in the sample at https://www.slipstick.com/code-samples/change-fileas-format-selected-folder.txt. (I'll test it when i get a chance and post the updated code here too.)

      Reply
      • Diane Poremsky says

        January 28, 2012 at 11:57 am

        As an FYI on the code- it runs on the *selected contacts*, not selected folder, so make sure you select the contacts.

  62. John Walker says

    January 19, 2012 at 12:47 am

    Fantastic,

    All my Gmail syncing had somehow made all my display as fields to say "home". This little program fixed me right up.

    Thanks,

    John

    Reply
  63. Rob says

    November 6, 2011 at 1:21 am

    Worked perfectly for me in Outlook 2010. Thanks!

    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 3

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
  • Jetpack plugin with Stats module needs to be enabled.
  • 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
  • Import EML Files into New Outlook
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

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

Import EML Files into New Outlook

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.