docs / articles / Excel 2016: Add Calendar Date Picker

Excel 2016: Add Calendar Date Picker

Eric Jul 09, 2026 2026-07-09 04:40:47

In the realm of data management, Microsoft Excel has long been a go-to tool for its versatility and robust features. One such feature, introduced in Excel 2016, is the Calendar Date Picker, a user-friendly tool that simplifies date selection. Let's delve into how to insert and utilize this feature to enhance your Excel experience.

Date Picker Add-in for Excel for Windows
Date Picker Add-in for Excel for Windows

Before we dive in, ensure you're using Excel 2016 or later, as the Calendar Date Picker is not available in earlier versions. Now, let's explore how to insert and navigate this handy tool.

How to insert dates from a Popup Calendar (date picker) in Excel – user guide | XLTools
How to insert dates from a Popup Calendar (date picker) in Excel – user guide | XLTools

Inserting the Calendar Date Picker

To insert the Calendar Date Picker, follow these steps:

How to create a drop down list calendar (date picker) in Excel?
How to create a drop down list calendar (date picker) in Excel?

1. Select the cell where you want the date picker to appear.
2. Right-click on the selected cell and choose 'Format Cells' from the context menu.
3. In the 'Number' tab, under 'Category', select 'Custom'.
4. In the 'Type' field, enter '[h]:mm AM/PM' (without quotes). This will trigger the date picker.
5. Click 'OK'.

Understanding the Date Picker Format

Use This Free Excel Date Picker to Enter Dates on Worksheet
Use This Free Excel Date Picker to Enter Dates on Worksheet

The format '[h]:mm AM/PM' might seem unusual, but it's designed to work with the date picker. Here's a breakdown:

'[h]' represents the hour in 12-hour format (1-12).
'mm' represents the minutes (00-59).
'AM/PM' represents the period (AM or PM).

Using the Calendar Date Picker

How to Insert a Calendar in Excel (the Simplest Way)
How to Insert a Calendar in Excel (the Simplest Way)

Once you've inserted the date picker, click on the cell to activate it. A calendar will appear, allowing you to select a date:

1. Click on the desired date. The date and time (set to the current time) will be inserted into the cell.
2. To change the time, simply type it in the cell, following the format '[h]:mm AM/PM'.

Customizing the Date Picker

Excel Date Picker - How to Insert? (Step by Step Examples)
Excel Date Picker - How to Insert? (Step by Step Examples)

While the default date picker works well, Excel also offers customization options:

1. **Changing the default date**: Right-click on the cell, choose 'Format Cells', go to the 'Number' tab, and under 'Type', enter a specific date (e.g., '01/01/2022').
2. **Changing the default time**: Follow the same steps as above, but change the time (e.g., '12:00 PM').

Excel VBA USERFORMS #25 Date Picker Calendar revealed! Loop through Userforms and Controls  Example
Excel VBA USERFORMS #25 Date Picker Calendar revealed! Loop through Userforms and Controls Example
an image of a calendar in microsoft office 365 with the date and time tab open
an image of a calendar in microsoft office 365 with the date and time tab open
302K views · 10K reactions | How to insert a calendar and date picker in Excel‼️ 🗂️ Don’t forget to save this post! 🧑‍🏫 Get your FREE Excel templates with the link in our bio! 🤯 Follow us on TikTok, YouTube, Twit | CheatSheets
302K views · 10K reactions | How to insert a calendar and date picker in Excel‼️ 🗂️ Don’t forget to save this post! 🧑‍🏫 Get your FREE Excel templates with the link in our bio! 🤯 Follow us on TikTok, YouTube, Twit | CheatSheets
Free Excel Calendar Template
Free Excel Calendar Template
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
How to Make an Interactive Calendar in Excel? (2026 Template)
How to Make an Interactive Calendar in Excel? (2026 Template)
How To Create a Calendar In Excel 2016 - VERY EASY!
How To Create a Calendar In Excel 2016 - VERY EASY!
How to Add Date Picker Calendar Drop Down in MS Excel (Easy)
How to Add Date Picker Calendar Drop Down in MS Excel (Easy)
Calender in Excel ‼️ Amazing Excel trick using data validation and conditional formatting ✅ #Excel
Calender in Excel ‼️ Amazing Excel trick using data validation and conditional formatting ✅ #Excel
Calculate days from/before date in Excel
Calculate days from/before date in Excel
NEW Date Picker in Excel for Web – Finally Here
NEW Date Picker in Excel for Web – Finally Here
Hide Date Picker Calendar in Access Form - Debra D's Blog
Hide Date Picker Calendar in Access Form - Debra D's Blog
How to make a dynamic calendar in excel
How to make a dynamic calendar in excel
Perfect Inserting A Dropdown Calendar In Excel
Perfect Inserting A Dropdown Calendar In Excel
Create a date sequence in Excel and auto fill date series
Create a date sequence in Excel and auto fill date series
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Effective Excel 5 Year Calendar
Effective Excel 5 Year Calendar
How to create a date picker in Excel!🙏
How to create a date picker in Excel!🙏
Interactive Excel Calendar with Heatmap – Free Download
Interactive Excel Calendar with Heatmap – Free Download
Excel Date Picker — Sam Radakovitz
Excel Date Picker — Sam Radakovitz

Customizing the Date Picker's Appearance

To change the date picker's appearance, you'll need to use VBA (Visual Basic for Applications):

1. Press 'Alt + F11' to open the VBA editor.
2. Click 'Insert', then 'Module' to create a new module.
3. Copy and paste the following code into the module:

Sub CustomDatePicker()
Application.ScreenUpdating = False
ActiveCell.NumberFormat = "@"
ActiveCell = InputBox("Enter a date (MM/DD/YYYY)", "Custom Date Picker", ActiveCell.Value)
Application.ScreenUpdating = True
End Sub

4. Save the file as an Excel Macro-Enabled Workbook (.xlsm).
5. To use the custom date picker, select the cell, right-click, and choose 'Assign Macro'. Then, select 'CustomDatePicker'.

In conclusion, the Calendar Date Picker in Excel 2016 offers a user-friendly way to insert and manage dates. Whether you're a seasoned Excel user or just starting out, this feature can significantly enhance your productivity. So, why not give it a try and see the difference it can make in your workflow?