In Excel: desktop Excel has no built-in pop-up calendar — use Data Validation with a date rule, or the Developer ▸ Date and Time Picker control, which exists only in 32-bit Windows Excel.
On this page7
Select the column that must hold dates.
Data ▸ Data Validation ▸ Settings ▸ Allow: Date, then set a sensible start and end.
On the Input Message tab, state the expected format; on the Error Alert tab, write a message that says what went wrong.
Format the column with an explicit date format so a typed entry is visibly recognised as a date.
If a real drop-down calendar is essential and everyone runs 32-bit Windows Excel, enable the Developer tab and use Insert ▸ More Controls ▸ Microsoft Date and Time Picker Control, linking it to a cell.
What this does
The calendar control many people remember came from an ActiveX component that shipped with 32-bit Office. It is absent from 64-bit installs, from Excel for Mac and from Excel for the web, so a workbook built on it fails silently for most recipients. What does work everywhere is Data Validation set to Allow: Date, which rejects anything outside a range or anything that is not a real date, plus an input message telling users the format expected. Before you run it on a workbook other people depend on, try it on a copy or a few rows first. Undo only reaches back through the current session, so a quick trial run is the cheapest way to see exactly what will change before the file is saved and shared. For “date chooser in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That is what makes a workflow that saves repeating the same clicks every week useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Data ▸ Data Validation ▸ Allow: Date ▸ between 01/01/2026 and 31/12/2026, with the Input Message "Enter as dd/mm/yyyy". Typing 15/03/2026 is accepted, 2026-13-01 is refused, and a stray text entry is refused as well — so downstream date arithmetic never meets a string. Half the date bugs in shared workbooks start as a typed date that was stored as text, and a validation rule stops that at the keyboard rather than three formulas downstream. If this is something you do often, add the command to the Quick Access Toolbar (right-click it on the ribbon and choose Add to Quick Access Toolbar) or learn its shortcut, so next time it is one click instead of a hunt through the menus.
In Google Sheets
This is a command rather than a formula, so there is no syntax to carry over. Google Sheets arranges its commands in menus across the top instead of a ribbon, names some of them differently and does not have every Excel command — look for the equivalent in the Sheets menus or its help before assuming the steps match. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. If you take one thing from this page on “date chooser in excel”, make it the order of checks rather than the individual clicks: confirm what is selected, apply the step, and look at the result before moving on. That small routine is what keeps Excel work predictable when the same task comes back in a slightly different workbook.
Common mistakes
- Building a workbook around the ActiveX control and sending it to a 64-bit or Mac user, who sees an empty box where the calendar was.
- Accepting free-typed dates without validation, which is how a column ends up half real dates and half text that looks identical.
- Using a validation list of typed date strings — the entries are text and stop working in date arithmetic.
- Assuming the mobile or web app offers the desktop control; neither does.
Frequently asked questions
Does Excel have a calendar drop-down?
Not natively on the desktop grid. The nearest built-in option is Data Validation restricted to dates.
Where is the Date and Time Picker control?
Developer ▸ Insert ▸ More Controls ▸ Microsoft Date and Time Picker Control 6.0, and only in 32-bit Windows Excel.
What works for everyone?
Data Validation with Allow: Date, plus an input message. It behaves identically on Windows, Mac and the web.
Can I show a calendar on a form instead?
Yes — a UserForm in VBA can host a calendar control, but it carries the same 32-bit limitation and requires macros to be enabled.