• 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 File As Format for Contacts

Slipstick Systems

› Outlook › People › Bulk Change File As Format for Contacts

Last reviewed on November 20, 2019     131 Comments

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

I call this my "super-duper bulk contacts changer" code because it's so easy to modify to use with other contact fields. Customize the code yourself or use the "Bulk change Contacts" VBA samples at Move Phone Numbers to a Different Phone Field and Change Email Display Name Format. Want to change the FileAs field in all contacts to match the setting in Options? I have a macro for that too: Change FileAs format to match Outlook's default setting. If the first and last names are in the wrong fields, use this macro to swap them: Swap First and Last Name Fields

A Powershell version is also available: Use PowerShell to Bulk Change Contacts

To change the default File As format used for new contacts, go to Tools, Options, Contacts options in older versions or File, Options, Contact (or People) options in Outlook 2010 and newer.

Change the default format in Contact Options

Outlook's Contact's offer a number of File As formats and this format can be used for the contact's name display in the Address Book. However changing the File As format on a large number of contact's is time-consuming when you need to change the contacts one by one. You can do it using VBA or a utility (listed below).

Change the FileAs format in Outlook's Contacts

The file as format options are shown in the screenshot. The VBA code sample supports all 5 formats.

Along with changing the File As order, you can change the order Outlook assumes you use when you enter the name. This setting determines how the names populate the dialog when you press the Full name button. If the name order is wrong in FileAs ("Mary, Smith" when using last, first format), check this setting. If you choose Last First format you don't need to use a comma to separate the names when you enter them and First Last1 Last2 correctly puts the name in the middle position into the last name field, not the middle name field. Outlook will detect names separated by commas as Last, First format, regardless of the Fullname format setting.

VBA Sample

The following code sample supports all 5 File As formats available in Outlook. 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. (Uncomment the line by removing the apostrophe from in front of the strFileAs = [name_format] command you wish to use.)

See page 2 (or the text file below) for code sample 2 to change the FileAs format on selected contacts.

To test for a value (such as Company name) and use a different File As format if the value is empty, you need to use an If... Then statement.

            With objContact
                If .CompanyName = "" Then
            ' Firstname Lastname format
                   strFileAs = .FullName
               Else
            ' Company name only
                   strFileAs = .CompanyName
               End If
               .FileAs = strFileAs
               .Save
            End With

See Bulk change FileAs format to match Outlook's default setting for a version of this macro that reads the default setting in the registry and applies it to existing contacts.

Run Macro button or press F5To use, select the Contacts folder in Outlook then return to the VBA Editor and press the Run button or F5 to run the macro. You can run the macro later by pressing Alt+F8 (after selecting the Contacts folder) then choosing the macro and pressing Run.

To help eliminate errors, we have text files containing the VBA code samples available. To use, open the text file and Select all (Ctrl+A), copy then paste into the VBA editor. To save to your computer, right-click and choose 'Save Target as'.
Original code - change contacts in default folder | Change selected contacts in any folder

Public Sub ChangeFileAs()
'Fromhttp://slipstick.me/5z
    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
            ' Uncomment the  strFileAs line for the desired format
            ' Comment out strFileAs = .FullName (unless that is the desired format)

                'Lastname, Firstname (Company) format               
                ' strFileAs = .FullNameAndCompany 
                
                'Firstname Lastname format
                 strFileAs = .FullName
               
                'Lastname, Firstname format
                ' strFileAs = .LastNameAndFirstName
               
                'Company name only
                ' strFileAs = .CompanyName
               
                'Companyname (Lastname, Firstname)
                ' strFileAs = .CompanyAndFullName
                
               .FileAs = strFileAs

                .Save
            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

Test for Names and Company

If you have a mix of contacts for people, with a value in the Fullname field, and companies, where the Fullname field is blank, you can replace the With objContact... End with code block with the snippet below.

This code checks for a value in the fullname field and if it's blank, it looks for a company name. If a value is in the company name field, it's used in the FileAs field.

            With objContact
             ' Test for blank name field
             If objContact.FullName = "" Then
                If objContact.CompanyName <> "" Then
                   .FileAs = .CompanyName
                End If
             Else
                .FileAs = .FullName
             End If      
             .Save
            End With

Change Mailing address

If you need to switch the mailing address to the business address field (or from business to home address) you can check for a value in the business address field, and if not blank, copy it to the .MailingAddress field.

Use .HomeAddress if you want to make the home address the mailing address.

As with the code above, replace the With objContact... End with code block in the macro with the snippet below.

            With objContact
               If .BusinessAddress <> "" Then
                 .MailingAddress = .BusinessAddress
                 .Save
               End If
            End With

Customize the code

I call this code sample my "super-duper bulk contact changer macro" because it's so easy to change it to work on other Contact fields. Simply replace section in the original macro that changes the FileAs field with other fields.

For example, changing it to .Body = "" will erase text from the body, solving a problem Nox had syncing contacts to a smart phone. If the phone can handle some text, you could keep some of the text, replacing 1024 with the number of characters you want to keep.

      ' keep some text 
               .Body = Left(.Body, 1024)
 If obj.Class = olContact Then
        Set objContact = obj

            With objContact

      ' erase the entire body
               .Body = ""

               .Save
            End With
End If

Common Errors

Colors when the code is correct
After pasting the code into the VB editor, the colors should be similar to the colors in this screenshot (and as seen in the code sample above).

Any text shown in Red has an error in it.

Blue, Black, and Green are "good", with the Blue color indicating VBA commands (If, Then, End etc), Black is your variables, and Green is used for comments. The second line in one of the 5 sets of Green lines needs to have Black text. You do this by removing the apostrophe (') from in front of the line. If more than one of those 5 lines is black, add an apostrophe to front of the format line you don't want to use. (In my screenshot, the second set is the format I want to use.)

Change only the 'subject' field used by the Address book

Note: this was written for an older versions of Outlook and is not needed with new versions.

Use the Outlook File As Order custom form to change just the display in the Address book, from Last name first, to First name first or use the File As entry.

Notes:

  • This method will not change the actual sort order in the Contacts folder or format used on the File As field.
  • Will return an error if there are distribution lists in the Contacts folder.
  • This has the same options as you'll find in Tools, E-mail Accounts, View or change existing Address books, Outlook Address book properties, but also adds Last name first option and full File As format, including the Company name.
  • Works on any contact folder - select the folder before clicking Run in the VB Editor or pressing F5. Leave the editor open and select another folder to use it on additional folders.
 

Tools

The original code works on the default Contacts folder and many users asked for a version that worked on the selected folder. We edited the code to change the selected contacts in any folder. Note that you do need to select the contacts, not just the folder.

Code Sample 2: Change FileAs on Selected Contacts

This code sample is an edited version of the previous code and works on the selected folder. I tested it in Outlook 2010 but it should work in all versions that the original code works with. This is the same code that is in the text file on page 1.

To use, you need to select the contacts. Use Select All (Ctrl+A) to apply it to all contacts in a folder or use Ctrl+click to select some contacts.

Public Sub ChangeFileAsSelectedContacts()
    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
            ' Uncomment the  strFileAs line for the desired format

                'Lastname, Firstname (Company) format
                ' strFileAs = .FullNameAndCompany
                
                'Firstname Lastname format
                 strFileAs = .FullName
               
                'Lastname, Firstname format
               '  strFileAs = .LastNameAndFirstName
               
                'Company name only
                ' strFileAs = .CompanyName
               
                'Companyname (Lastname, Firstname)
                ' strFileAs = .CompanyAndFullName
                
               .FileAs = strFileAs

                .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
Bulk Change File As Format for Contacts was last modified: November 20th, 2019 by Diane Poremsky
Post Views: 148

Related Posts:

  • Bulk Change Email Display Name Format
  • Bulk Move Phone Numbers to a Different Phone Field
  • Bulk Change Contact's FileAs Format to Match Outlook's Default Setting
  • Use PowerShell to Bulk Change Contacts

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

    December 3, 2024 at 3:43 pm

    This worked, thank you!! Is there a way to customize the format of the FileAs field? I want it to be "FirstName Lastname, (Company)"

    Reply
    • Diane Poremsky says

      December 5, 2024 at 9:21 pm

      If the default formats don't meet your needs, you can use a custom format in the script.

      strFileAs = .LastNameAndFirstName &", (" & .CompanyName & ")"

      Reply
      • Diane Poremsky says

        December 5, 2024 at 9:24 pm

        oops... you want first last (company) - same deal, just different field names.

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

        could also do it like this -
        strFileAs = .Firstname & " " & .lastname &", (" & .CompanyName & ")"

  2. Robert A Lucido says

    September 18, 2024 at 5:44 pm

    Hi... I need to do the opposite, I need to move the File As field into the First Name field can I just change str in the code?

    Reply
    • Diane Poremsky says

      September 26, 2024 at 12:48 am

      Yes, you would use .firstname = .fileas

      Reply
  3. Amit says

    September 10, 2024 at 4:40 am

    Is there a way to delete content in the Title field? Some of my contacts are saved as 'Mr', 'Ms', 'Dr', etc., and I wanted to bulk delete all entries in that field to provide consistency.

    Reply
    • Diane Poremsky says

      September 10, 2024 at 9:28 am

      Yes, you can use the macro or PowerShell to delete it. The field name is .title

      VBA change
      With objContact

      ' remove all the lines between the first and last two lines

      ' add this
      .title = ""

      .Save

      End With

      PowerShell is here - it's a little easier because you don't need to change macro security settings.
      https://www.slipstick.com/developer/powershell-bulk-change-contacts/
      foreach ($Contact in $Contacts.Items)
      {

      ' remove all the lines between the first and last lines

      ' add this
      $contact.title = ""

      $Contact.Save()

      Reply
      • Robert A Lucido says

        September 26, 2024 at 8:01 am

        Thank you... I got so frustrated trying to get it to work, I exported into CSV moved my fields and now hope to bring it back in... if that doesn't work I'll run this powershell

    • Amit says

      September 24, 2024 at 2:09 am

      So it should look like this?

      $olApp = new-object -comobject outlook.application
      $namespace = $olApp.GetNamespace("MAPI")

      # Default Contacts folder
      $Contacts = $namespace.GetDefaultFolder(10)

      # Uses current folder
      #$Contacts = ($olApp.ActiveExplorer()).CurrentFolder

      foreach ($Contact in $Contacts.Items)
      {

      $contact.title - ""

        $Contact.Save()

         }
      }

      $olApp.Quit | Out-Null
      [GC]::Collect()

      Reply
      • Diane Poremsky says

        September 25, 2024 at 11:16 pm

        I see two typos - sorry.

        foreach ($Contact in $Contacts.Items)
        {

        $contact.title = "" this needs to be an equal sign.

        $Contact.Save()

        }
        }
        There should only be one closing bracket.

        This code will skip contact groups - otherwise, there will a PowerShell error when it looks for the title filed in the groups.
        $olApp = new-object -comobject outlook.application
        $namespace = $olApp.GetNamespace("MAPI")

        # Default Contacts folder
        #$Contacts = $namespace.GetDefaultFolder(10)
        # Uses current folder
        $Contacts = ($olApp.ActiveExplorer()).CurrentFolder

        foreach ($Contact in $Contacts.Items)
        {

        # Don't change distribution lists
        if ($Contact.messageclass -notlike "*distlist*")
        {

        $Contact.title = ""
        $Contact.Save()

        }
        }

        $olApp.Quit | Out-Null
        [GC]::Collect()

  4. Phil says

    April 20, 2022 at 9:05 am

    Is there a way to use this to change which phone numbers appear? The defaults are Business, Home, Business Fax and Mobile, and if you change which one displays in the drop-down, Outlook remembers your choice for that contact, but not for all contacts.

    Reply
    • Diane Poremsky says

      April 20, 2022 at 10:39 am

      You can use a custom form to change it for all - https://www.slipstick.com/outlook/people/show-the-home-address-on-contact-form/ - and then can change the existing contacts to use the custom form but cannot change the order on the numbers using vba (other than changing which field the number is in).

      Reply
  5. Mike Shick says

    November 20, 2020 at 2:44 pm

    Is there an option to file as first last (company)?

    Reply
    • Diane Poremsky says

      November 20, 2020 at 4:09 pm

      First last, no, only last, first

      'Lastname, Firstname (Company) format  
      ' strFileAs = .FullNameAndCompany 

      Reply
  6. NT4Boy says

    April 18, 2020 at 5:09 am

    I use Office 2016 therefore Outlook 2016 with outlook.com as my exchange server.
    Most of the mail attachments I send get converted to winmail.dat, whereas in Office 2007 they didn't. Obvious workarounds using cloud storage, but its the MOST frustating thing.
    Tried to fix this for months. Looked at hundreds of Googled suggestions for setting format to HTML, and also doing the Disable TNEF registry hack to no avail.
    What does work in some instances is to delete the email contact from pst/ contacts, and recreate new from scratch.
    With a huge contacts list of several hundred entries, I did wonder if this script could be used to perhaps rewrite the mail send format HTML entry for each contact.

    Appreciate your advice.

    Reply
  7. Lorraine says

    April 6, 2020 at 9:33 am

    Ok, thank you for posting this. But, I am not making head or tails of it - I do not know what to do.. Maybe step by step for each option should be listed. "If you want to safe as Name Surname, then use this code: " Right now I am looking at the codes and do not understand what I am to do. The only thing I get is that this is the answer to my problem.

    Reply
  8. Mark says

    November 19, 2019 at 4:29 pm

    The page says ...

    "To change the default File As format used for new contacts, go to Tools, Options, Contacts options in older versions or File, Options, Contact options in Outlook 2010 and newer."

    Minor point:
    For Outlook 2016, the menu path is File, Options, People.

    Reply
  9. Josh says

    January 20, 2016 at 8:44 am

    Running Outlook 2010 - couldn't get the first VBA code to work but the Sample 2 Code on selected contacts worked. Although, I did move the ".FileAs = strFileAs" (Ln 42, Col 16) over a space to line up the indent with the line above before I ran the code, possible code error? Don't know much VBA but hope this helps someone

    Reply
  10. G says

    November 27, 2015 at 10:00 am

    Help!

    Doesn't work on "Suggested Contacts", but works great on "Contacts". Any tips on modifying the code?

    running Outlook 2010

    Reply
    • Diane Poremsky says

      November 27, 2015 at 11:25 am

      This tells the macro which folder to use -
      Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
      for suggested contacts (or other folders at the same level as contacts), use
      Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts).parent.folders("Suggested contacts")

      Reply
  11. Richard Smith says

    March 3, 2015 at 5:56 pm

    When I imported the outlook data file, some of my contacts' home addresses ended up showing as business addresses. Any way to convert those addresses from the business address column to the home address column?

    Reply
    • Diane Poremsky says

      April 1, 2015 at 1:13 am

      You can use the macro - just change which fields you are swapping.
      Samples here https://www.slipstick.com/outlook/contacts/bulk-move-phone-numbers-to-a-different-phone-field/ and here
      https://www.slipstick.com/developer/code-samples/working-items-folder-selected-items/

      Reply
  12. rick campbell says

    January 27, 2015 at 8:09 pm

    Thank you SO much for this code. worked like a charm!

    Reply
  13. john says

    October 6, 2014 at 5:58 am

    Yes it is. Actually the First Name field holds the company name, and the Last Name field holds the fullname. So based on the First, Last "File As" configuration I should get a "Company (First Name), Fullname (Last Name)" presentation which I don't. Actually I don't understand how the company is added again at the end of the 'sentence'. Also inside the contact I get the option to correct the "File As' and have it displayed as it should. Thanks again for helping.

    Reply
  14. john says

    October 3, 2014 at 6:24 am

    Hello Diane and thanks for taking the time to reply. I 'd like to add some more details on the matter. The contacts are inside a public folder so they are distributed to all people of the company I am working at this moment. When I make the initial import to a local Outlook Contacts folder the information is displayed normally as should (in the address book) but... when this folder is copied to the public folder's mailbox on Exchange and is being retrieved through there, then the address book 'File As' is being changed to that strange format I described above. I have done the import many times with all possible combinations and all times I experienced the same behavior...correct 'File As' locally, altered when retrieved from the Public folder. Regards.

    Reply
  15. john says

    September 23, 2014 at 10:31 am

    Hi Diane I have a strange behaviour when importing a bulk contacts csv file, while having selected the First, Last (both in address book and Options/People) I get a contacts' appearance in the first column (File As) which is First, Last, Company (!). I tried running your script on the selected contacts folder with the .Firstname parameter selected but all I got is the same result. Any ideas are welcome because this is already driving me crazy. =)

    Reply
    • Diane Poremsky says

      September 24, 2014 at 1:33 am

      what type of email account? I've seen behavior like this with outlook.com accounts.

      Reply
      • john says

        September 24, 2014 at 7:27 am

        It's an Exchange 2013 account. What puzzles me is that the above presentation (First, Last, Company) isn't defined anywhere in the Outlook options. Shouldn't the 'File as' behavior for bulk importing contacts be the one set in the Outlook options, so 'First, Last Name' as I have already chosen? Also when I edit the Outlook properties I get the option of setting it (manually) AS it should be. Thanks.

      • Diane Poremsky says

        October 2, 2014 at 12:04 pm

        Just noticed this in your other comment:
        I tried running your script on the selected contacts folder with the .Firstname parameter selected but all I got is the same result.

        That means the name and company are all in the first name line. Click the Full name button to check.

  16. Dale says

    June 10, 2014 at 8:12 am

    To change the mailing address to .BusinessAddress I used:
    SelectedMailingAddress = 2

    ...because
    .MailingAddress = .BusinessAddress simply copied the address information from .BusinessAddress to .HomeAddress (which was the defaulted .MailingAddress).

    Reply
  17. simonjhudson says

    May 2, 2014 at 9:32 am

    Brilliant - this issue was beginning to really hurt me as CRM keeps updating stuff without regard to my preferred order.
    Thanks !!

    Reply
  18. TLMS says

    April 29, 2014 at 4:36 pm

    What is a comment character?

    Reply
    • Diane Poremsky says

      April 29, 2014 at 9:19 pm

      It's an apostrophe added at the beginning of the line

      Reply
  19. EIKAinc says

    January 14, 2014 at 4:30 am

    Thanks! It works, just required double run. First run have no effect in my Outlook 2013.

    Reply
  20. EIKAinc says

    January 13, 2014 at 3:38 am

    Hi Diane!

    I am not VB expert, but I need a little bit different script. I need to re-arrange Full Name column, not File As column. Now when I import data to Outlook 2013 from iCloud, names appear as FirstName LastName, but I need LastName FirstName (and no comma between). And I do not use FileAs column at all (it contains data, but it's hidden).

    Could you please change script to satisfy my requirement?

    Thanks!

    Reply
    • Diane Poremsky says

      January 13, 2014 at 12:50 pm

      You need to set the layout to last first in file, options, contacts then run the macro here - https://www.slipstick.com/outlook/contacts/swap-first-and-last-name-fields/ to reset the fields, changing these lines so you put the values back in the correct fields.
      .FirstName = .User3
      .LastName = .User4

      Reply
  21. Dave O says

    January 3, 2014 at 5:37 pm

    This worked perfectly in Outlook 2013. Thank you so much for taking the time to post these detailed instructions.

    Reply
  22. STGdb says

    October 23, 2013 at 9:59 am

    Nice script Diane, thank you very much. I know that the thread is old but it still works.

    Also, for anyone who is interested, your not stuck with using just the standard five selections that Microsoft provides in Outlook. Just place a comment character in front of the line:

    strFileAs = .FullName

    ...and below the line you just added a comment character to, add:

    'Configure FileAs to be Company Name (Full contact name)
    strFileAs = .CompanyName & " (" & .FullName & ")"

    Or you can the same results as the above line with something like:

    'Configure FileAs to be Company Name (Full contact name)
    strFileAs = .CompanyName & " (" & .Title & " " & .FirstName & " " & _
    .MiddleName & " " & .LastName & " " & .Suffix & ")"

    The benefit about the latter of the two examples above is that you can remove just the contact's Title or their Suffix or you can change the character that encloses the contact's name.

    Reply
    • Diane Poremsky says

      October 23, 2013 at 12:21 pm

      If you use custom fields, i recommend using an if statement, so you don't have weird things like "Acme ()" or " (John Smith)"
      if .CompanyName = "" then
      strFileAs = .fullname
      else
      strFileAs = .CompanyName & " (" & .FullName & ")"
      end if

      However, you could just use strFileAs = .CompanyAndFullName. If you use want to change the name order without changing it in the contact (eg from last, first to first last) you need to use a custom format.

      Reply
  23. Breanne Miller says

    July 12, 2013 at 1:58 pm

    The Macro worked; however, the company is not listed between parenthesis. How can i fix this? I'd like it to appear as: Last, First (Company)

    Reply
    • Diane Poremsky says

      July 12, 2013 at 9:40 pm

      Did you use the fullnameandcompany format? That should be the format with parents around the company name

      Reply
  24. wallrats says

    April 17, 2013 at 11:09 pm

    Great Script works flawlessly on the "default" contact list.. Is it possible to modify the script to run against a non-default Contact List. I have a few contact list for different groups of people. I have the following list titled: Contacts, Manufacturing USA, Manufacturing EUR, Sales USA, Sales EUR. Any help would be greatly appreciated..

    Reply
    • Diane Poremsky says

      April 17, 2013 at 11:21 pm

      Yes, someone tweaked the macro to work on the selected contacts folder. The code is here: https://www.slipstick.com/code-samples/change-fileas-format-selected-folder.txt

      Reply
  25. MTran says

    April 11, 2013 at 5:05 pm

    Thanks very much. Worked perfectly and has saved me the mundane approach of having to change individual contacts.

    Reply
  26. kennyb7 says

    April 6, 2013 at 9:02 am

    Does this work with Outlook 2013?

    Reply
    • Diane Poremsky says

      April 6, 2013 at 10:56 am

      yes, it does.

      Reply
  27. Wrong Passport says

    March 31, 2013 at 9:20 am

    Thank you! I had been annoyed with this problem for years; I finally decided to do something about it and there was your solution

    Reply
  28. Kuba says

    March 23, 2013 at 7:07 am

    Thanks so much! I have just run it on Outlook 2003. I was so annoyed with changing the order manually.

    Reply
  29. Kendra Von Achen says

    March 22, 2013 at 8:22 am

    genius! It worked! I recently synced my contacts between 3 different programs, including Outlook and it messed up most of my File As formats. I ran your code across all of my contacts and it fixed it! Thank you so much for sharing this!!!

    Reply
  30. Aaron Crews says

    March 12, 2013 at 3:01 pm

    Will this work in Outlook 2013 (365)? Thanks, Aaron

    Reply
    • Diane Poremsky says

      March 12, 2013 at 3:03 pm

      Yes, it will.

      Reply
  31. Val says

    February 18, 2013 at 1:19 pm

    Diane,
    It worked but i forgot to Uncomment the strFileAs line that uses the format i wanted , and your code was set to
    :

    'Lastname, Firstname format
    ' strFileAs = .LastNameAndFirstName

    I needed:

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

    Now all the names display as last name, first name format .
    When i past the code again and run , it gives me an error message ::
    The macros in this project are disabled. Please refer to the online help or doscumentation of the host application to determine how to enable macros.

    Any ideas ?
    Thanks in advance,

    Val

    Reply
    • Diane Poremsky says

      February 18, 2013 at 9:26 pm

      You need to set macro security to low in Trust Center, Macros.

      Reply
  32. Jawad says

    January 30, 2013 at 3:27 am

    All my file as area is now blank after using this macro. Partially worked (removed all file as data) but didnt add the new file as data.

    Reply
    • Diane Poremsky says

      January 30, 2013 at 6:43 am

      Which file as format did you choose? It shouldn't remove any data - only set one of the file as types. If you choose Company and people don't have a company, it may be blank. You'd need to use an If.. then statement to check for a company name and fall back to full name if one did not exist.

      Reply
      • Diane Poremsky says

        January 30, 2013 at 6:50 am

        Use this if you want the companyname field and not everyone has a companyname - the companyname/fullname combinations won't need this, only the company name only option.

        With objContact
        If .CompanyName <> "" Then
        strFileAs = .CompanyName
        Else
        strFileAs = .FullName

        End If
        .FileAs = strFileAs
        .Save
        End With
        End If

  33. Howard Bachtel says

    January 10, 2013 at 3:46 pm

    I would like to have the Address Book display the name and e-mail only (omit the column "Display Name" as it is redundant. This area looks like an option but I don't see this specifically. I am not proficient at VBA but have used it some. Can you give me any advice?

    Thank you in advance.

    Reply
    • Diane Poremsky says

      January 10, 2013 at 4:06 pm

      Sorry, the address book is not customizable.

      Reply
  34. Eric Harper says

    January 2, 2013 at 2:04 pm

    Awesome fix!! Saved me hours fixing what shouldn't have been broken in the first place.

    Reply
  35. Julia says

    December 27, 2012 at 8:31 pm

    I'm still not getting Display Name as Smith, J. It shows the email address on most of them (presumably the ones not imported from Outlook Express). The Name column shows correctly. Any ideas, please and thanks? (I don't know how to use all this Visual Basic stuff and what I did try from above obviously didn't work.) I hope I don't have to go and change each one individually--there must be about 500 names.

    Reply
    • Diane Poremsky says

      December 27, 2012 at 8:43 pm

      The email display name field uses the email address & the file as or full name fields. I have a different macro to update the display name field - Bulk Change Email Display Name Format

      Reply
  36. jaydr says

    December 26, 2012 at 9:33 am

    Not a vba expert and I'm having the same problem as the first commentor, with the Titles (Mr, Mrs etc) winding up in the file as field. Is there a way to alter the code so that it is set to FirstName LastName instead of FullName (which I guess includes the titles)?

    Thanks for your help. This otherwise is terrific for me.

    Reply
    • Diane Poremsky says

      December 26, 2012 at 11:13 am

      I'm not seeing titles included, but suffixes (Jr, Sr) are part of the full name field.

      Assuming last name, first name ( strFileAs = .LastNameAndFirstName) is not desired format, try

      strFileAs = .Firstname & " " & .lastname

      Note that when you only have a first name, the space separating the name fields is added anyway. And editing a contact that has a suffix may change it to full name field since its not a valid format.

      Reply
  37. steve s. says

    December 17, 2012 at 12:58 pm

    thanks for quick reply. i wonder if in clicking on different things to try and figure this out, i now messed up something. now saying macros are disabled?? thanks.

    Reply
    • Diane Poremsky says

      December 17, 2012 at 4:27 pm

      Did you enabled macros earlier? In Outlook 2010, go to File, Options, Trust center and set macro security to low to run the macro.

      Reply
  38. steve s. says

    December 17, 2012 at 12:13 pm

    i use Outlook 2010 and am having trouble finding the "this outlook session" you reference. when i hit ALt + f11 i see the VBA but what do i click on to open a window into which i can paste your code? i see reference to left pane, but can't find the 'This Outlook Session' within. thanks.

    Reply
    • Diane Poremsky says

      December 17, 2012 at 12:22 pm

      Expand Project1, then expand Microsoft Outlook Objects.

      Reply
  39. Julia says

    October 17, 2012 at 3:19 pm

    As I have never done/heard of VBA before, it took me a while to figure out that I have Microsoft Outlook open at the same time as the VBA. I had to guess to click on all the directory levels to get to ThisOutlookSession, then copied and pasted the code into VBA. I selected each of my address lists, then went back into VBA/This session, and pressed F5. Another box came up with Run, so I chose Run. I then closed out Outlook, but my Display As still shows as email addresses, not the person's name. Have I missed something? I am almost completely at a loss. Thanks for any further help you can give me.

    Reply
  40. Rob says

    October 5, 2012 at 5:28 am

    I ran this for a client. it worked great on 3118 contacts, Thank you!
    I was wondering if it is at all possible that this could have created duplicate contacts? client is complaining of multiple contacts. not all but quite a few.

    Please let me know

    Reply
    • Diane Poremsky says

      October 5, 2012 at 6:50 am

      What type of email account? No, it won't create duplicates - it just changes the field, it doesn't copy the contact. However, it's possible that as the result of the change, a poor syncing experience with a smartphone resulted in duplicates. It's also possible that by putting all contacts in one format, they sort better so you can see you have duplicates. This is more likely if there are a few dupes.

      Reply
  41. Sean Woodley says

    October 2, 2012 at 12:41 pm

    WOW, AMAZING ... you have saved me hours of re-doing my contacts after my phone sync deleted everything!

    Reply
  42. David Tabor says

    September 12, 2012 at 1:32 pm

    The code ran fine and changed all to the format I wanted (Lastname, Firstname)but seconds after changing it reverted back to Fullname. Not sure what I'm doing wrong.

    Reply
    • Diane Poremsky says

      September 12, 2012 at 3:31 pm

      Are you doing this on a Hotmail connector account? I know it does this - the server expects a specific format.

      Reply
  43. Diane Poremsky says

    September 7, 2012 at 8:15 pm

    @mayur, If I understand your question, try https://www.slipstick.com/outlook-developer/bulk-change-fileas-format-contacts-default/ - it gets the FileAs global setting from the registry, offers to update it then applies that format to the default contacts folder.

    Reply
  44. mayur says

    September 7, 2012 at 12:34 am

    Hi, Diane

    I also looking for same thing, but my concern is that, i want to detect which default format user has set for File As field.

    Once it conforms then only again ask him to change it or not..!!

    can please help me on this..!

    Reply
    • Diane Poremsky says

      September 7, 2012 at 4:49 pm

      I'll test some code - basically, you need to get the format used for .FileAs and display it. It might be harder to do than it sounds, but I'll take a look at it.

      Reply
  45. Harry says

    August 16, 2012 at 11:48 am

    Don't come round here...I'll have to give youd a big tongue kiss. Thankfully I was smart enough to do a search before changng 750 contacts one at a time. Kudos to you!

    Reply
    • Diane Poremsky says

      August 16, 2012 at 1:24 pm

      LOL I thought you were a spammer when i first saw this. Glad to have helped!

      Reply
  46. Gary says

    August 10, 2012 at 2:17 am

    Thank you sooo much!!! Been battling with this as I used excel to clean up all the contacts and then imported them back only to find the "file as" a mess. It messed with the way contacts were displaying in my phone too
    Thanks again!

    Reply
  47. Tim Ponting says

    August 7, 2012 at 3:34 am

    Such a useful piece of code, many thanks. We use Title, Middle Name and Suffix fields for our own data purposes, not as Outlook intended, and by modifying this code a little it has allowed us to generate clean File As and Email Display Name fields automatically.

    Reply
  48. Tom Petrie says

    July 18, 2012 at 4:01 pm

    Hi Diane,

    I'm fairly elliterate. I've just lost the IT guy who'd hold my hand and now I'm trying to fly solo. What I'd like to do is to re-organize all 3682 contacts in my 2010 Outlook so that they are filed by company name. I'm trying to follow your instructions step by step, but I'm stymied on Step One: Alt+F11 opens Send/Receive Groups, not the VBA Editor you reference. What to do?

    Reply
    • Diane Poremsky says

      July 18, 2012 at 7:42 pm

      something is not right - Send / Receive groups is Ctrl+Alt+S. Go to File, Options, Customize Ribbon and enable the Developer ribbon. Return to outlook and open the VBA editor from the Developer ribbon - button is on the left.

      Reply
  49. Andy says

    July 18, 2012 at 10:20 am

    Thanks - saved me loads of time!

    Reply
  50. nicolo says

    July 17, 2012 at 8:55 pm

    Hello Diane,
    just a quick question for you.
    I am trying to adapt your vba code to fix the file as of my outlook contacts.
    When i receive them from the icloud i get them with the file as field inverted (last, first)
    I followed your guide step by step and was able to fix that using the script on page 2 but i cannot seem to make the one on page 1 work.
    I'm guessing that the script on page 1 is for the default outlook folder and not for the icloud folder.
    Is there a way that i can change the name of the folder so that the icloud contact folder will be tageted?

    Reply
    • Diane Poremsky says

      July 17, 2012 at 9:08 pm

      Correct, page 1 is for the default folder. Page 2 is for the select contacts so it doesn't matter what folder they are in.

      I have instructions for using different folders at Get Outlook folder paths - because its in the icloud, you need to use GetFolderPath function then replace Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts) with Set objContactsFolder = GetFolderPath("icloud path") - I'm not sure offhand what you'd use for the icloud path - i don't have it installed on this computer. Probably iCloudfolder-name, but I haven't tested it. The macro might not work since icloud doesn't use a pst file. I'll look into it tomorrow afternoon.

      Reply
    • Diane Poremsky says

      July 17, 2012 at 9:09 pm

      BTW, you can use the code on page two and select all contacts in the icloud folder.

      Reply
  51. nicolo says

    July 17, 2012 at 6:42 pm

    hello everyone! i tried copy and pasting both vba codes. but i always get an error stating "macros in this project are disabled outlook 2010" i have no idea what to do next.
    i enabled the macro lowered security to medium then to low.
    i am using outlook 2010.
    can someone please help me?

    Reply
    • Diane Poremsky says

      July 17, 2012 at 7:00 pm

      You need macro security on low. If the macro won't run and macro security set to low, try restarting Outlook.

      Reply
  52. Andrew says

    July 3, 2012 at 8:34 am

    This code worked great in Outlook 2010, just what I needed. Thanks very much

    Reply
  53. Carl Bell says

    May 26, 2012 at 6:34 pm

    I want to change the "Display as" from an Email address to a First name space Last Name.
    Can it be done?
    Carl

    Reply
    • Diane Poremsky says

      May 26, 2012 at 7:50 pm

      Sure, see Bulk Change Email Display Name Format

      Reply
  54. Paul D says

    May 14, 2012 at 9:43 am

    I can't get this to work. I am on an Exchange server and the script prompts me for my Outlook credentials. I type in my logon password but it won't accept this and re-prompts. Is there a separate Outlook "credential"? I use the logon to access Outlook via a browser, although I almost never do this. Any help would be greatly appreciated. Thanks!

    Reply
  55. Bob May says

    May 2, 2012 at 6:26 am

    Thank You. Just what I was looking for. Worked perfectly. Thanks for sharing!

    Reply
  56. Paul Nocero says

    April 18, 2012 at 3:14 pm

    I added the following three lines after the .FileAs= line to update the way e-mail addresses are displayed, to make them consistent with the contact name:

    ' Set "Display As" name in Contact folder

    If .Email1Address "" Then .Email1DisplayName = .FileAs & " (" & .Email1Address & ")" Else .Email1DisplayName = ""
    If .Email2Address "" Then .Email2DisplayName = .FileAs & " (" & .Email2Address & ")" Else .Email2DisplayName = ""
    If .Email3Address "" Then .Email3DisplayName = .FileAs & " (" & .Email3Address & ")" Else .Email3DisplayName = ""

    Reply
  57. Nathan says

    March 19, 2012 at 1:05 pm

    Thanks!

    Reply
  58. Paddy says

    March 6, 2012 at 3:47 am

    Thankyou Diane this is brilliant. I have used both VBA for Display as ans File as. Very nice and convenient. Pitty it choices aren't available in contacts as a default.
    Thanks

    Reply
  59. Edwin says

    February 28, 2012 at 12:35 pm

    Needed to add "Sub" to end last line but worked great.

    Thanks a million Diane. Saved me so much time. :)

    Reply
  60. Simon says

    February 22, 2012 at 2:19 am

    Forever in your debt, Diane, works flawlessly.

    Reply
  61. Mike says

    February 15, 2012 at 9:40 am

    I could not get this to work. Let me give you how things are setup in my system.
    I am running Win 7 and Outlook 2010.
    I am connected to an exchange server so I do not have a pst file, instead on pc is an ost file.
    I have 24 contact folders all with unique names under My Contacts
    When I run the script I get the following error
    Compile error:
    Syntax error
    The script stops at Firstname Lastname format
    I have removed the ' from both the Firstname Lastname format line and the strFileAs - .FullName
    Can you advise me on what to do next?
    Thanks

    Reply
  62. Armin says

    February 8, 2012 at 11:02 pm

    Hello,
    thank you! the change File As for default folder worked perfect.
    I do have other contact folders that i was hoping to change the file as, so i selected the contact folder, went to VBA by pressing Alt+F11, paste the selected folder script but when trying to run i get an error:

    it highlights "folder As Outlook.folder" and pop ups the following error:
    Compile Error:
    User-Defined type not found

    i am using outlook 2003.

    can you help please?
    thanks

    Reply
    • Diane Poremsky says

      February 9, 2012 at 6:36 am

      I can't repro the error but I see I had a typo on the page (now fixed) - the revised code is for *selected contacts*, not the selected folder. Do you get the error if you select contacts first?
      Are any lines in red font?

      Reply
  63. Markos says

    January 8, 2012 at 9:08 am

    Hi all,

    really useful vba macro indeed.

    I have an additional problem and was wondering if anyone has solved it before:

    At the office we have been inputting the First and Last Name in the wrong order - meaning that Outlook was set up to expect First Last in the Fullname field while we were putting Last First. Now more thatn 1000 contacts have the wrong order in the Fullname field. Is there a VBA for a bulk change (order reverse)?

    Thanks,

    Markos

    Reply
    • Diane Poremsky says

      January 8, 2012 at 8:52 pm

      It is possible. I used this code at https://www.slipstick.com/outlook/contacts/bulk-move-phone-numbers-to-a-different-phone-field/ as the base - moved the first and last names to the user3 and user4 fields then made the swap. I uploaded a file to https://www.slipstick.com/macros/ChangeFirstLast.txt with the code. I'll write up an article on it next - I'm sure you aren't the only one who needs to make the swap.

      Note that my code assumes you are not using the user3 and user4 fields for anything. To confirm those are empty, add them to a list view so you can quickly check.

      ETA: I have this macro written up at Swap First and Last Name Fields

      Reply
  64. PeterB says

    January 6, 2012 at 5:28 am

    I feel that I'm so near to what I need, but can't quite finish off - can you assist?

    I'm following the "Change only the 'subject' field used by the Address book" instructions above, but fail at the "Usage" paragraph in the ReadMe file - I don't see the 3 buttons! I simple want the sort order in the address book to be the same as the values in the FileAs Field, ie Subject Field = FileAs.

    I'm using Outlook 2010 on a standalone Windows 7 PC (ie no exchange server).

    The form reads as if this is a one off, bulk conversation - is there script to set this as the permanent option for all new/amended contacts?

    Thanx, Pete

    Reply
  65. Ciaran says

    January 4, 2012 at 3:14 pm

    Magnificent - found this VBA "how to" and reorganised 1076 contacts within less than 5 minutes!
    thanks

    Reply
  66. Taqi says

    December 18, 2011 at 6:25 am

    Thanks for this Diane! So I installed the VBA but when running, the "play" icon is not highlighted it seemingly does nothing. When it is running (I think) and when I click on the shortcut in the outlook after highlighting the contact, it erases the whole "File As" field.

    My question is: How do I use this macro?

    Reply
    • Diane Poremsky says

      December 18, 2011 at 1:09 pm

      Did you remove the comment from the line you wanted to use? If not, it sets the fileas to nothing.

      Reply
  67. Nicu says

    November 22, 2011 at 12:37 am

    Thank you, easy to set up. Just after I copied the script there were two errors, but copying it from the link you provided in comments it worked.

    Reply
  68. Ramon says

    November 6, 2011 at 12:02 am

    I don't use the default Outlook Contacts Folders, but iCloud. I guess the following line needs to be changed:
    Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
    question is, how do I identify the name of the icloud contacts Folder?

    Reply
  69. Ray says

    October 30, 2011 at 4:38 am

    Worked brilliantly! Thanks!

    Is there any way to change the File As to First Name Last Name (Company)? Other than manually, that is.

    Reply
  70. Justin says

    October 21, 2011 at 2:59 am

    I am getting a "Compile error: Expected End Sub" error as well. I downloaded the text file and pasted from that, and it isn't working. When I get that error the first line is highlighted in yellow and "objContact =" from

    If obj.Class = olContact Then

    Set objContact = obj

    is highlighted in blue.

    Thanks!

    Reply
    • Diane Poremsky says

      October 21, 2011 at 4:59 pm

      Any lines shown in red?
      Is End Sub the last line in the mcro?

      Reply
  71. Rae Ann says

    October 6, 2011 at 2:38 am

    Can you tell me how to display the Notes section on the address book? One of my staff really wants to see her notes when viewing the address book. Is this possible in Office 2010?

    Reply
    • Diane Poremsky says

      October 6, 2011 at 2:51 am

      That is not possible in any version of Outlook. She can use the Contacts folder to view the notes then right click on the contact and choose Create > New message to.

      Reply
  72. J Lewis says

    September 30, 2011 at 7:29 am

    I deleted the '. Sorry I didn't know what that meant. Newbie to this stuff.

    FYI, it only worked when a record was selected. Therefore, I had to select the records within my contacts folder to make it work.

    OL 2007 (12.0.6562.5003) on Win 7x32

    Thanks for the help!

    Reply
    • Diane Poremsky says

      September 30, 2011 at 8:37 am

      Glad we got that straightened out - and thanks for pointing out areas where i needed to improve the instructions.

      Reply
  73. J Lewis says

    September 29, 2011 at 10:11 am

    I did not remove any apostrophes. Pasted it as it was in the text file.

    Reply
    • Diane Poremsky says

      September 29, 2011 at 10:57 am

      I updated the instructions and added a screenshot - remove an ' from the format you want to use then run it.

      Reply
  74. J Lewis says

    September 28, 2011 at 8:37 am

    Oddly enough, (no error after pasting the text), but instead of changing "file as" to [company (last, first)] it erases the "file as" field. Not on all the contacts, but the contact I have selected in outlook, in the background. If nothing is selected, nothing is changed.

    Thanks for the help by the way, even though I haven't been able to knock this out yet.

    I'd do this by hand, but there are 920 vendors in my outlook. Thanks again for any help.

    Reply
    • Diane Poremsky says

      September 28, 2011 at 8:54 am

      Did you remove the apostrophe from one of the formats? I'll post a screenshot above in a few minutes so you can see what you should be seeing.

      Reply
  75. J Lewis says

    September 23, 2011 at 2:43 am

    it may be something I did, but i got a syntax error. I copied into the editor after alt-f11.

    i copied from "public...

    to

    ...end sub"

    Reply
    • Diane Poremsky says

      September 23, 2011 at 3:05 am

      It's the ' that mark comments- they are probably red in the VB Editor - they should be green. For whatever reason the ' was changed. (One can learn to hate this software... and I mean wordpress, not outlook. Sometimesi think wordpress has as many quirks and annoyances as outlook. <g>)

      Try the code here: https://www.slipstick.com/code-samples/change-file... - it should be perfect.

      Reply
  76. J Lewis says

    September 22, 2011 at 2:14 am

    I have more than one contacts folder (suppliers, as well as contacts, which is customers and personal contacts). If I select the one (suppliers) I want to update, it does not update it. Any ideas? Can I change the "set" references in the script to "suppliers" where "contacts" currently appears?

    Reply
    • Diane Poremsky says

      September 22, 2011 at 3:54 am

      This is quick and dirty but it should work (does here in Outlook 2010) - changed part is the first few lines (down to ojbclass- olcontact then) and the objects that are released at the end.

      To avoid errors, copy the VBA from this file or view it on Page 2.
      https://www.slipstick.com/code-samples/change-file...

      Reply
  77. Jeff says

    September 21, 2011 at 7:46 am

    Need some help. I am getting an "Compile error: Expected End Sub" error. I do not have any distribution lists in my contact folder.

    I pasted the code into VBA under ThisOutlookSession.

    Went back to Outlook and have selected the contact folder and also tried to select all contacts in the folder.

    I keep getting this error any suggestions? I feel that maybe I am not selecting the contact list correctly.

    After I clear the error, the ver first line "Public Sub ChangeFileAs () is highlighted in yellow with a yellow arrow to the left of it.

    Reply
    • Diane Poremsky says

      September 21, 2011 at 8:04 am

      Is the last line in the VB Editor "End Sub" ? Make sure you have it (and all the code in between). You should be able to click in the code box above and press Ctrl+A, C to select all and copy it.

      The font size is larger in Firefox so the code extends beyond the codebox but Ctrl+A will select all, whether it is visible or not. (Font size is now fixed - the entire code sample should display in the box, ending in End Sub.)

      Reply
  78. Yakira says

    September 20, 2011 at 2:22 pm

    I'm not used to doing any of this stuff but input the script as explained. How do I actually run it? What do I do after pasting it into VBA?

    Reply
    • Diane Poremsky says

      September 20, 2011 at 2:41 pm

      Select the contacts folder that needs changed and press the Run button (or F5) in the VB Editor.

      Reply
  79. Robert says

    September 18, 2011 at 7:19 am

    Works with Outlook 2010 SP1. Haven't tested with anything other than .FullName, but it served it's purpose. Thanks for the script!

    Reply
  80. Jan Kuyl says

    September 13, 2011 at 10:37 pm

    This is the script I havge been looking for.

    I ran the VBA script in Outlook 2007 to change the FileAs property of all my contacts to "Firstname Lastname", with partial success. All contacts with a title (Mr. or Mrs.) kept their old display property, meaning "Smith, John" became "John Smith", but "Mr. Ferguson Alex" did not change.

    Is there an updated version/fix for this script available?

    Reply
    • Diane Poremsky says

      September 14, 2011 at 3:34 pm

      I'll have to test it - I've never seen that happen, but I don't use a lot of titles either. It should not affect it as the title isn't used in the file as field.

      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
  • This operation has been cancelled due to restrictions
  • How to Hide or Delete Outlook's Default Folders
  • 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.