Date Selector in Excel

“date selector in excel” comes up constantly, so this page leads with the exact answer, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

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.

Annotated stepsExcel
1

Select the column that must hold dates.

2

Data ▸ Data Validation ▸ Settings ▸ Allow: Date, then set a sensible start and end.

3

On the Input Message tab, state the expected format; on the Error Alert tab, write a message that says what went wrong.

4

Format the column with an explicit date format so a typed entry is visibly recognised as a date.

5

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.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “date selector in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. 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 turns a workflow that saves repeating the same clicks every week into a method you can reuse, explain, and defend when the workbook leaves your screen.

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. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. If you take one thing from this page on “date selector in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

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.