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

Removing Birthdays and Anniversaries from the Calendar

Slipstick Systems

› Outlook › Calendar › Removing Birthdays and Anniversaries from the Calendar

Last reviewed on January 19, 2018     19 Comments

You cannot delete individual birthdays from the Birthday calendar. see "Remove the Holiday or Birthday Calendar" for more information.

Not surprisingly, there are more than a few users who don't Outlook to add birthdays to their calendar. Generally speaking, the best way to prevent this is by not putting birth dates and anniversaries in the contact fields. If you want to keep a record of important dates, add them to the notes field or use the User Fields.

However, if you want to use the birthday field, you can use a macro to remove the birthday event from the calendar. It's not 100% fool-proof and may not prevent every birthday from being added to the calendar, but it should delete most additions.

Remove Dates from Contacts

If you want to remove the dates quickly and (fairly) easily, use a group by view, grouping by the Birthday or Anniversary field then drag the contacts to the None field. You can hold Shift as you select as group of Contacts, which will speed the process up if you have a lot of contacts.

Drag to the None group to remove the date

Remove Events from the Calendar

If the Contacts and Events are still linked, Outlook will delete the birthday or anniversary event when you remove the date from the Contact. However, its easy to break the link which will prevent Outlook from breaking the link. (Syncing with a device will often break the link).

Removing the dates from the calendar is simple: initiate a search for Birthday OR Anniversary and delete the items with those words in the subject. Hold Shift as you select the first and last items to delete a group of events at once.

Remove Dates from Contacts Tutorial

This video shows you how to use a group by view to remove dates from Contacts and use Instant Search to find Birthday and Anniversary events on your calendar.

In the Contacts folder:

  1. Switch to a List view
  2. Add the Birthday and Anniversary field to the view. In Outlook 2010, do this from View ribbon, View setting. In other versions, you can right click on the row of field names and choose Field Chooser. Birthday and Anniversary are under Personal Fields.
  3. Right click on one of the new fields and choose Group by this field.
  4. If another field is in the Group by box, drag it out.
  5. Locate the Birthday: None group and drag the items to it. You can use Ctrl+A to select all or Ctrl+Click to select a group.
  6. Repeat for the other field.

If the events are still linked to the Contact, Outlook will remove them from the calendar when you clear the contact.

To check, go the Calendar and type Birthday OR Anniversary in the Search field. Delete the events you don't want, using Ctrl+Click to select a group.

VBA to Remove Birthday Events

To use, copy then paste in the Outlook's VBA editor (press Alt+F11 to open it.) Click in the Start Up macro and press the Run button.

To test: go into the Calendar and search for Birthday. This will show all birthday events. Open a new contact form and size it so you can see the calendar screen. Create a contact with a birthday field and watch the calendar screen. If the macro is working, you should see it jump when you save and close the contact. If its not working, you'll see the new Birthday event.

Dim WithEvents mcolCalItems As Items

Private Sub Application_Startup()
    Dim objNS As NameSpace
    Set objNS = Application.GetNamespace("MAPI")
    Set mcolCalItems = objNS.GetDefaultFolder(olFolderCalendar).Items
    Set objNS = Nothing
End Sub

Private Sub mcolCalItems_ItemAdd(ByVal Item As Object)

    If Item.Class = olAppointment And _
       InStr(Item.Subject, "Birthday") Or InStr(Item.Subject, "Anniversary") > 0 Then
        With Item
            .Delete
        End With
    End If
End Sub

More Information

For help using the VBA Editor, see How to use Outlook's VBA Editor

See Adding Birthdays and Anniversaries to Outlook's Calendar for a macro to add a reminder to the birthday events.

Removing Birthdays and Anniversaries from the Calendar was last modified: January 19th, 2018 by Diane Poremsky
Post Views: 37

Related Posts:

  • Adding Birthdays and Anniversaries to Outlook's Calendar
  • Create Birthday Events for Public Folder Contacts
  • Remove the Holiday or Birthday Calendar
  • Add a reminder to Birthday Events

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

    November 26, 2017 at 5:59 am

    Hi all, it seems at some point Microsoft have added a way to remove individual birthdays from Outlook.com, and these will sync to the client. Open Outlook.com, Click on Calendar, click on Birthdays.
    Next select the Birthday event that you want to delete - this will allow you to edit, but its not obvious that you can delete it. Click on the "..." in the menu bar at the top of the edit dialogue. You are then prompted with the option to permanently remove the birthday. Works a treat. You will need to refresh the browser to see the change immediately afterwards.

    Reply
    • Diane Poremsky says

      November 26, 2017 at 8:26 am

      That just deletes one event, one at a time.

      The birthday calendar is a new feature in outlook.com and office 365. You can turn the birthday calendar off in outlook.com options, under calendar options.

      Reply
  2. PJS says

    October 23, 2016 at 2:54 pm

    Thank you so much for this!

    Reply
  3. Michael Rowe says

    October 11, 2016 at 5:31 pm

    So is it possible to leave the birthday and anniversary dates in the contacts but remove them (or hide them from view) in calendar? I ask because I use those to fields in a custom contact form to track the how long since the last date I spoke with the contact and how many years of experience in the industry they have by two formulas that give me each calculated from what I enter. Does that make sense? I don't want to see all these false birthdays and anniversaries on my calendar and I can't delete them without loosing the helpful output of the formulas in each custom contact form. Should I be using different date fields to calculate the years since last spoken and years of experience?

    Reply
    • Diane Poremsky says

      October 11, 2016 at 5:36 pm

      I would use custom fields for these dates. This will solve the fake events on the calendar problem.

      Reply
      • Michael Rowe says

        October 24, 2016 at 1:38 pm

        Wow! That was a quick response, Diane. I didn't see an email notifying me of your reply, so sorry for the delay in replying. Tell me when you say custom fields do you mean one of the 4 User Fields (1-4) found under contacts? If so those don't seem to allow me to create dates when selecting between the drop-down menu's choices of formatting options.

      • Diane Poremsky says

        October 24, 2016 at 5:05 pm

        you could use those fields - they are text fields and you'd type it in mm/dd/yyyy or whatever format you prefer - or you can create new date fields.

  4. Palani says

    January 21, 2015 at 5:37 am

    Its very simple, export all the contacts, open the file in a text editor, search for the word and replace with blank, then save the file, delete all the contact from your list, import back.

    Reply
    • Diane Poremsky says

      January 21, 2015 at 11:33 am

      While that works, you can lose images or attachments - editing in place or using a macro is better and generally easier. Plus, in this specific case, you might want to keep the birthdate but not have the event added to the calendar.

      Reply
  5. Roland says

    August 3, 2014 at 3:39 pm

    I managed to solve this problem by watching the calendar folder for the add or change event and then see if the word " 's Birthday" or " 's Anniversary" is the subject of the Calendar entry. If it is then a message box appears with the option to delete the calendar entry. I used ( 's birthday) as this is how Outlook names the entry using the contact name.

    I added the following code to the ThisOutlookSession

    Dim FolderCal As clsFolderCalendar
    Set FolderCal = New clsFolderCalendar

    In addition to this I then created a class module called clsFolderCalendar

    I then added the following code:

    Private WithEvents items As Outlook.items
    'THIS DEALS WITH THE AUTOMATIC GENERATION OF CALENDAR REMINDERS FOR BIRTHDAYS AND ANNIVERSARY WHEN CONTACT ADDED OR CHANGED.

    Private Sub Class_Initialize()
    Dim ns As Outlook.NameSpace
    Dim CalendarFolder As Outlook.MAPIFolder
    Dim myAppointment As Object

    Set ns = Application.GetNamespace("MAPI")
    Set CalendarFolder = ns.GetDefaultFolder(olFolderCalendar)
    Set items = CalendarFolder.items

    End Sub

    Private Sub Items_ItemAdd(ByVal Item As Object)

    Dim strResponse As Integer
    Dim strSubject As Integer

    If Item.Class = olAppointment Then
    If InStr(Item.Subject, "'s Birthday") > 0 Or InStr(Item.Subject, "'s Anniversary") > 0 Then
    ' Displays a message box with the yes and no options.
    strResponse = MsgBox(prompt:="A new Calendar Reminder " & Item.Subject & " has been created." & vbCrLf & vbCrLf & "Do you want to delete it ?", Buttons:=vbYesNo)

    ' If statement to delete calendar entry if yes button was selected.
    If strResponse = vbYes Then
    Item.Delete
    End If
    End If
    End If

    End Sub

    Private Sub items_ItemChange(ByVal Item As Object)

    Dim strResponse As Integer
    Dim strSubject As Integer

    If Item.Class = olAppointment Then
    If InStr(Item.Subject, "'s Birthday") > 0 Or InStr(Item.Subject, "'s Anniversary") > 0 Then
    ' Displays a message box with the yes and no options.
    strResponse = MsgBox(prompt:="The existing Calendar Reminder " & Item.Subject & " has been amended." & vbCrLf & vbCrLf & "Do you want to delete it ?", Buttons:=vbYesNo)

    ' If statement to delete calendar entry if yes button was selected.
    If strResponse = vbYes Then
    Item.Delete
    End If
    End If
    End If
    End Sub

    If you wanted you could delete the message box option and have the entry deleted straight away but this would not give you the option to leave the entry if you actually wanted it.

    Hope this helps.

    Roland

    Reply
  6. benjitek says

    July 25, 2013 at 5:55 pm

    Google Apps, and Gmail's calendar, handle birthdays perfectly -- a separate calendar that you can turn on/off. Outlook's method is the equivalent of a birthday-abacus :-(

    Reply
    • Diane Poremsky says

      July 26, 2013 at 8:45 am

      Outlook.com uses two calendars too, and I hear a lot of complaints about the extra calendar when it syncs down to Outlook. It would be nice if you could control whether birthdays are created, without needing to remover the dates from the contacts to prevent it.

      Reply
      • benjitek says

        July 26, 2013 at 3:57 pm

        I agree -- it would be perfect if Outlook could be configured not to create birthdays, something it doesn't seem to do consistently. Often, birthdays aren't created until I open the contact, remove the birthday, save the contact, reopen and re-enter the birthday, and re-save. Birthdays in Outlook are a mess. A separate calendar for annual contact events is ideal, and I've actually had clients go with Google Apps to avoid Outlook completely, all because of how it handles contact birthdays/anniversaries.

  7. Brett says

    March 27, 2013 at 2:48 am

    Also checking it is an all day event and a recurring event seems to have done the trick for me...

    If Item.Class = olAppointment And _
    Item.GetRecurrencePattern.RecurrenceType = olRecursYearly And _
    Item.AllDayEvent And _
    (Right(Item.Subject, 11) = "'s Birthday" Or Right(Item.Subject, 14) = "'s Anniversary") Then

    Reply
  8. Scott C. Athen Esquire says

    October 4, 2012 at 6:47 pm

    How can I NOT delete for example "Birthday Party"?

    Reply
    • Diane Poremsky says

      October 4, 2012 at 8:26 pm

      if birthday is always the last word, you can use if right(subject, 8) = birthday or just add a condition to check the recurrence pattern - the party (and lincoln's bday) aren't going to be created as recurring events.

      If Item.Class = olAppointment And _
      Item.GetRecurrencePattern.RecurrenceType = olRecursYearly And _
      InStr(Item.Subject, "Birthday") Or InStr(Item.Subject, "Anniversary") > 0 Then

      Reply
  9. Scott C. Athen Esquire says

    October 3, 2012 at 9:51 pm

    Will this script remove events like "Birthday Party"?

    Reply
    • Diane Poremsky says

      October 3, 2012 at 11:00 pm

      Yes it will. This line: InStr(Item.Subject, "Birthday") looks for the word birthday in the subject.

      Reply
  10. jack Kukura says

    April 24, 2012 at 6:03 pm

    Thank You!!!!!!

    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.