docs / articles / Insert Drop-Down Calendar in Excel Without Date Picker 365

Insert Drop-Down Calendar in Excel Without Date Picker 365

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

Inserting a dropdown calendar in Excel without using the built-in date picker in Excel 365 can be achieved through a combination of Excel's data validation and a bit of VBA (Visual Basic for Applications) coding. This method allows you to create a custom calendar that suits your specific needs.

Perfect Inserting A Dropdown Calendar In Excel
Perfect Inserting A Dropdown Calendar In Excel

Before we dive into the process, ensure that you have Excel 365 and a basic understanding of VBA. If you're new to VBA, don't worry; the steps are straightforward, and we'll guide you through the process.

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

Creating the Dropdown Calendar

To create a dropdown calendar, we'll first set up the data validation list and then use VBA to populate the list with dates.

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

Here's a step-by-step guide to creating the dropdown calendar:

Setting up Data Validation

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

Data validation in Excel allows you to restrict the type of data that users enter into a cell. In this case, we'll use it to create a dropdown list.

1. Select the cell where you want the dropdown calendar to appear. 2. Click on 'Data' in the Excel ribbon, then click on 'Data Validation'. 3. In the 'Settings' tab, under 'Allow', select 'List'. 4. In the 'Source' field, enter an equal sign (=) followed by an opening bracket (). 5. We'll populate this list with dates using VBA, so leave it empty for now and click 'OK'.

Populating the Dropdown Calendar with VBA

Free Excel Calendar Template
Free Excel Calendar Template

Now, let's use VBA to populate the data validation list with dates. This will create our dropdown calendar.

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

```vba Sub CreateCalendar() Dim dv As DataValidation Dim rng As Range Dim i As Integer Set dv = ThisWorkbook.Worksheets("Sheet1").Range("A1").Validation dv.Delete Set dv = ThisWorkbook.Worksheets("Sheet1").Range("A1").AddValidation(Type:=xlValidateList) dv.InputTitle = "Select a date" dv.InputMessage = "Please select a date from the list." dv.ErrorTitle = "Invalid date" dv.ErrorMessage = "You must select a date from the list." Set rng = ThisWorkbook.Worksheets("Sheet2").Range("A1") rng.NumberFormat = "mmm-yy" For i = 1 To 365 rng.Offset(i, 0).Value = DateSerial(Year(Now), Month(Now), Day(Now) + i) Next i dv.Source = ThisWorkbook.Worksheets("Sheet2").Range("A1:A366") End Sub ```

4. Customize the code as needed. For example, change "Sheet1" and "Sheet2" to the names of your worksheets, and adjust the cell reference "A1" if you want the calendar in a different cell.

How to Add Date Picker Calendar Drop Down in MS Excel (Easy)
How to Add Date Picker Calendar Drop Down in MS Excel (Easy)

5. Run the macro by pressing 'F5'. It will create a dropdown calendar in the specified cell, populated with the next 365 dates starting from today's date.

Customizing the Dropdown Calendar

How to Make an Interactive Calendar in Excel? (2026 Template)
How to Make an Interactive Calendar in Excel? (2026 Template)
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
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
Printable 2025 Quarterly Calendar Excel Template
Printable 2025 Quarterly Calendar Excel Template
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
an image of a calendar on the computer screen with time and date options for each month
an image of a calendar on the computer screen with time and date options for each month
Calendar in Excel: Make Dynamic, Interactive Calendar in Excel with Formula + Conditional Formatting
Calendar in Excel: Make Dynamic, Interactive Calendar in Excel with Formula + Conditional Formatting
Excel Date Picker - How to Insert? (Step by Step Examples)
Excel Date Picker - How to Insert? (Step by Step Examples)
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Create a Calendar in Microsoft Excel or Insert a Reference Calendar
Create a Calendar in Excel - Tutorial
Create a Calendar in Excel - Tutorial
How to make a dynamic calendar in excel
How to make a dynamic calendar in excel
Excel Autofill - how to quickly enter Months, Days, Dates and Numbers without typing
Excel Autofill - how to quickly enter Months, Days, Dates and Numbers without typing
Use This Free Excel Date Picker to Enter Dates on Worksheet
Use This Free Excel Date Picker to Enter Dates on Worksheet
Ready to kick off 2025 with organisation and style?
Ready to kick off 2025 with organisation and style?
Calculate days from/before date in Excel
Calculate days from/before date in Excel
Don't save the date 📆
Don't save the date 📆
Create A Drop-Down List In Excel To Restrict Data
Create A Drop-Down List In Excel To Restrict Data
How to make dynamic  dependent drop down lists in Excel
How to make dynamic dependent drop down lists in Excel
the calendar dashboard in excel with text overlaying it that reads, calendar dashboard in excel
the calendar dashboard in excel with text overlaying it that reads, calendar dashboard in excel

Now that you have a basic dropdown calendar, you can customize it to suit your needs.

Here are a few customization options:

Changing the Date Range

To change the date range, modify the 'For' loop in the VBA code. For example, to show the next 180 days, change the loop to:

```vba For i = 1 To 180 ```

This will display the next 180 dates in the dropdown calendar.

Changing the Starting Date

To change the starting date, modify the 'DateSerial' function in the VBA code. For example, to start the calendar on January 1, 2022, change the line to:

```vba rng.Offset(i, 0).Value = DateSerial(2022, 1, 1 + i) ```

This will set the starting date of the calendar to January 1, 2022.

With these customization options, you can create a dropdown calendar that fits your specific needs. Whether you're planning a project, scheduling events, or tracking deadlines, a dropdown calendar can streamline your workflow and save you time.

Remember, the key to a well-functioning dropdown calendar is to keep it up-to-date. Regularly review and adjust the starting date and date range to ensure the calendar remains relevant and useful.

Now that you've learned how to insert a dropdown calendar in Excel without using the date picker in Excel 365, you can apply this knowledge to create custom calendars for various purposes. Happy Exceling!