How To See When An Outlook Event Was Created : Checking Calendar Item Creation Time

The creation time of any Outlook event is stored in the item’s metadata, visible in the properties window. If you have ever needed to check exactly when a meeting or appointment was first created, you might have found it tricky to locate. This guide shows you exactly how to see when an Outlook event was created using simple steps.

Outlook does not display the creation date directly in the main calendar view. You need to access the event’s properties to find this hidden timestamp. The process works the same in Outlook 2016, 2019, 2021, and Microsoft 365.

Let me walk you through the fastest methods to retrieve this information. You will learn multiple approaches, from the desktop app to the web version.

How To See When An Outlook Event Was Created

To see the creation time of an Outlook event, you must open the item and look in its properties dialog. This is the only place where Outlook stores the original creation timestamp.

Here is the step-by-step method for the desktop version of Outlook:

  1. Open your Outlook calendar and locate the event you want to check.
  2. Double-click the event to open it in its own window. Do not just hover or single-click.
  3. Once the event window is open, look at the top ribbon menu. Click the “File” tab in the upper-left corner.
  4. In the File menu, you will see an “Info” section. Click on “Properties” or “Properties” button.
  5. A new dialog box called “Properties” will appear. Look for the field labeled “Created” or “Created:” near the top of this window.
  6. The date and time shown next to “Created” is the exact moment when this event was first made.

That is it. You have now found the creation timestamp. The format usually shows the date and time in your local time zone.

If you cannot see the “Created” field, check that you are looking at the correct Properties window. Some users accidently open the appointment form instead of the properties dialog.

Alternative Method Using The Ribbon

There is another way to access the same information without using the File menu. This method is slightly faster for some users.

  1. Open the event by double-clicking it in your calendar.
  2. In the event window, look at the ribbon at the top. Find the “Tags” group.
  3. Click the small arrow icon in the bottom-right corner of the Tags group. This is the “Dialog Box Launcher” button.
  4. A smaller dialog box will appear. Click the “Properties” button at the bottom.
  5. The same Properties window opens, showing the “Created” field.

Both methods lead to the exact same Properties window. Choose whichever feels more natural for you.

Checking Creation Time In Outlook Web App

The web version of Outlook works differently from the desktop app. You cannot access the same Properties dialog in Outlook on the web. However, you can still find the creation time using a workaround.

Here is how to check the creation date in Outlook Web App (OWA):

  1. Go to outlook.office.com and log in to your account.
  2. Open your calendar and click on the event you want to inspect.
  3. The event details pane will open on the right side of the screen.
  4. Scroll down to the bottom of the details pane. Look for a link that says “View more details” or “Show details.”
  5. Click this link to expand the full event information.
  6. You should see a section labeled “Organized by” or “Details.” The creation time is sometimes listed here as “Created” or “Created on.”

Unfortunately, the web version does not always show the creation timestamp for all events. If you cannot find it, you may need to use the desktop app or another method.

Using Message Headers In OWA

For events that are also email messages (like meeting requests), you can check the message headers. This trick works for events that were sent to you as invitations.

  1. Open the event in Outlook on the web.
  2. Click the three dots (More actions) menu in the toolbar.
  3. Select “View message details” or “View message source.”
  4. A new window will show the raw message headers. Look for the line that starts with “Date:” or “Creation-date:”.
  5. The timestamp next to this line is when the original meeting request was created.

This method only works for events that originated as email messages. It does not work for manually created calendar entries.

Using Outlook VBA To Find Creation Time

If you need to check creation times for many events, manual checking is tedious. You can use a simple VBA macro to extract the creation date from multiple events at once.

Here is a basic VBA script that shows the creation time for a selected event:

  1. Press Alt+F11 in Outlook to open the VBA editor.
  2. In the editor, click “Insert” and then “Module.”
  3. Copy and paste the following code into the module:
Sub ShowEventCreationTime()
    Dim objApp As Outlook.Application
    Dim objAppt As Outlook.AppointmentItem
    Set objApp = Outlook.Application
    Set objAppt = objApp.ActiveInspector.CurrentItem
    MsgBox "This event was created on: " & objAppt.CreationTime
End Sub
  1. Close the editor and save the macro when prompted.
  2. Open an event in Outlook, then press Alt+F8 to run the macro.
  3. Select “ShowEventCreationTime” and click Run.
  4. A message box will display the exact creation date and time.

This macro is a huge time saver if you audit calendar entries regularly. You can modify the code to loop through multiple events if needed.

Limitations Of VBA Method

The VBA method only works on the desktop version of Outlook. It will not work in Outlook for Mac or the web app. Also, your organization may block macros for security reasons.

If macros are disabled, you will see an error message. In that case, stick with the manual Properties method described earlier.

Checking Creation Time On Outlook For Mac

Outlook for Mac has a different interface than the Windows version. The steps to find the creation time are slightly different.

Follow these steps on Outlook for Mac:

  1. Open your calendar and double-click the event you want to check.
  2. In the event window, click the “Event” menu at the top of the screen.
  3. Select “Show Info” or “Properties” from the dropdown menu.
  4. A small information panel will appear. Look for the “Created” or “Creation date” field.
  5. The timestamp shown is when the event was first created.

Some versions of Outlook for Mac do not show the creation time in the Info panel. If you cannot find it, try opening the event in the reading pane instead of a separate window.

Why Creation Time Matters

Knowing when an event was created can be useful in several situations. Here are common reasons people need this information:

  • Auditing when a meeting was scheduled to verify timelines.
  • Checking if an event was created before or after a specific deadline.
  • Troubleshooting sync issues between different calendars.
  • Verifying the authenticity of meeting invitations.
  • Tracking when recurring events were first set up.

The creation time is a reliable piece of metadata because it cannot be easily changed by users. It is set by the system when the event is first saved.

Difference Between Created And Modified Time

Do not confuse the “Created” field with the “Modified” or “Last saved” field. The Properties window shows both timestamps.

  • Created: The exact moment the event was first made.
  • Modified: The last time someone made a change to the event.
  • Last saved: Usually the same as modified, but can differ in some cases.

If you see a modified time that is earlier than the created time, something is wrong with the data. This can happen when events are imported from other systems.

Using Search Folders To Find Events By Creation Date

You can also use Outlook’s search folders to find all events created on a specific date. This is helpful if you need to locate events without opening each one.

Here is how to set up a search folder for creation date:

  1. Go to your Calendar folder in Outlook.
  2. Click in the search box at the top of the calendar.
  3. Type the following search query: created:01/15/2024 (replace with your target date).
  4. Outlook will filter events created on that exact date.
  5. You can also use relative dates like created:yesterday or created:last week.

This search method works in both the desktop app and Outlook on the web. It is a quick way to find events without checking properties individually.

Advanced Search Operators

Outlook supports several search operators for creation date. You can combine them for more precise results:

  • created:>01/01/2024 – Events created after January 1, 2024.
  • created:<06/30/2024 - Events created before June 30, 2024.
  • created:this month - Events created in the current month.
  • created:last year - Events created in the previous calendar year.

These operators work in the search box of any folder, including the calendar. They are case-insensitive but must be typed exactly as shown.

Exporting Calendar Data To See Creation Times

If you need to analyze creation times for many events, exporting your calendar to Excel is a good option. The exported data includes the creation timestamp.

Here is how to export calendar events with creation times:

  1. In Outlook desktop, go to File > Open & Export > Import/Export.
  2. Select "Export to a file" and click Next.
  3. Choose "Comma Separated Values" (CSV) and click Next.
  4. Select your Calendar folder from the list.
  5. Choose a save location and name for the file.
  6. Click Finish to start the export.
  7. Open the CSV file in Excel. Look for a column named "Creation Time" or "Created."

The CSV export includes many fields, including start time, end time, subject, and creation time. You can sort or filter by the creation time column in Excel.

Note that the creation time in the CSV is usually in UTC format. You may need to convert it to your local time zone.

Using Power Automate For Regular Checks

For advanced users, Microsoft Power Automate can extract creation times from Outlook events automatically. This is useful for recurring audits.

You can create a flow that triggers when a new event is created. The flow can log the creation time to a SharePoint list or Excel file. This requires some setup but saves time in the long run.

Common Issues And Troubleshooting

Sometimes you cannot see the creation time even after following the steps. Here are common problems and their solutions:

  • Event is a recurring series: Open the specific occurrence, not the series master. The creation time for each occurrence may differ.
  • Event was imported from another system: Imported events may have a creation time that reflects the import date, not the original creation.
  • Event was created by someone else: If you are not the organizer, you may not see the creation time. Only the organizer's copy has the original timestamp.
  • Properties window is empty: This can happen if the event is corrupted. Try opening the event in safe mode or repairing your Outlook data file.

If none of these solutions work, try restarting Outlook. Sometimes the metadata does not load correctly until the application is refreshed.

Frequently Asked Questions

Can I see the creation time of an Outlook event on my phone?

The Outlook mobile app does not show the creation time directly. You would need to use the desktop or web version to access the Properties dialog.

Does the creation time change if I move an event to a different calendar?

No, the creation time remains the same even if you move the event to another calendar folder. It is a fixed property of the item.

Can I edit or change the creation time of an Outlook event?

You cannot change the creation time through the normal Outlook interface. Advanced users can modify it using VBA or third-party tools, but this is not recommended.

Why does the creation time show a different date than when I made the event?

This can happen if the event was created by a delegate or if the event was copied from another source. The creation time reflects the original creation, not when you recieved it.

Is there a keyboard shortcut to open the Properties window?

Yes, you can press Alt+Enter while the event window is active. This opens the Properties dialog directly in most versions of Outlook.

Final Thoughts On Checking Creation Times

Now you know exactly how to see when an Outlook event was created. The process is simple once you know where to look. The Properties window holds all the metadata you need.

Whether you use the desktop app, web version, or VBA, the creation time is always accessible. Bookmark this guide for the next time you need to audit your calendar events.

Remember that the creation time is a reliable piece of data. It cannot be easily altered, making it useful for verification and tracking purposes. Use the methods above to quickly find this information whenever you need it.

If you run into any issues, refer back to the troubleshooting section. Most problems are easily solved by restarting Outlook or checking the correct event type. Happy calendar auditing!