In Excel: select the dates, press Ctrl+1, choose Date or Custom, and apply a format such as m/d/yyyy, dd-mmm-yyyy, or yyyy-mm-dd.
Select the date cells.
Press Ctrl+1 to open Format Cells.
Choose Date for built-in formats or Custom for a pattern like yyyy-mm-dd.
If nothing changes, convert the values from text to real dates first.
What this does
Date formatting changes how a stored date is displayed, not the underlying serial number. That distinction matters: a real Excel date can show as 6/1/2026, 01-Jun-2026 or 2026-06-01 without changing its value. Text that only looks like a date must be converted first before number formatting will work. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “long date format 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
A2 contains the real date June 1, 2026. Press Ctrl+1, choose Custom, and type yyyy-mm-dd: the cell displays 2026-06-01 while formulas still treat it as the same date. If A2 contains text like 01.06.2026 that Excel does not recognize, use Text to Columns or DATEVALUE first, then format it. Clean date formats make sorting, filtering, lookup formulas and reports trustworthy. They also stop ambiguous month/day values from being misread across regions. 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
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “long date format excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Trying to format text values that are not real Excel dates.
- Using mm when you meant minutes in a time format, or m when you meant month in a date context.
- Changing display format and expecting the underlying date value to change.
- Mixing regional date orders such as 03/04/2026 without clarifying whether it means March 4 or April 3.
Frequently asked questions
What is the ISO date format in Excel?
Use the custom format yyyy-mm-dd, for example 2026-06-01.
Why will my date format not change?
The value is probably text. Convert it to a real date with Text to Columns, DATEVALUE or a locale-aware import step.
Does changing format change the date?
No. It changes the display. The stored serial date remains the same unless you transform the value itself.