
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
How to Convert YYYY-MM-DD to Standard Date in Excel?
In Excel, we always try to show the dates in the format of dd-mm-yyyy, which is the standard format when we use the dates in Excel. However, when the date is given in a different format, some users may feel uneasy because they may have only used the standard format for a long time.
Generally, in Excel, when we enter any format of date in the sheet, it will be directly converted to the standard format. If we try to convert any other format to standard format manually, then it can be a time-consuming and inaccurate process as we need to change every date manually.
Read this tutorial to learn how you can convert the yyyy-mm-dd format to a standard format in Excel. We can complete the task using the formulas supported in Excel.
Converting YYYY-MM-DD to Standard Date in Excel
Here, we will first use the formula to get any one of the results, then use the auto-fill handle to get all the results. Let's go over a simple procedure for converting yyyy-mm-dd to standard format using Excel formulas. We can complete the task using the Date function in Excel.
Step 1
Let us consider an excel sheet where the data is a date in the yyyy-mm-dd format, similar to the below image.

Now, in cell B2, click on an empty cell and enter the formula as follows −
=DATE(LEFT(A2,4), MID(A2,6,2), RIGHT(A2,2)) and press enter to get our first result, which looks like the image below. In the formula, A2 is the address of our value on the sheet.
Empty cell > Formula > Enter

In the formula A2 is the address of our value on the sheet. in stands for inches and ft stands for feet. We can convert the values in to any metrics just by changing the names in formula/
Step 2
Then, to get all the results, drag down from the first result using the auto-fill handle, and our final result will be similar to the below image.

Note − We can also use the formula as follows
=TEXT(DATE(LEFT(A2,4),MID(A2,6,2),RIGHT(A2,2)),"mm/dd/yyyy") to complete our task.
Conclusion
In this tutorial, we have used a simple example to demonstrate how we can convert yyyy‑mm‑dd to a standard date in Excel.
- Related Articles
- MySQL query to convert YYYY-MM-DD to DD Month, YYYY date format
- Convert MySQL date format from yyyy-mm-ddThh:mm:ss.sssZ to yyyy-mm-dd hh:mm:ss ?
- How to convert Python date string mm/dd/yyyy to datetime?
- MySQL date format to convert dd.mm.yy to YYYY-MM-DD?
- How to parse Date from String in the format: dd/MM/yyyy to dd/MM/yyyy in java?
- How to convert MM/YY to YYYY-MM-DD in MYSQL?
- How to format JavaScript date into yyyy-mm-dd format?
- MySQL - Convert YYYY-MM-DD to UNIX timestamp
- Convert dd/mm/yyyy string to Unix timestamp in MySQL?
- How to convert MM/YY to YYYY-MM-DD with a specific day in MySQL?
- Java Program to format date in mm-dd-yyyy hh:mm:ss format
- Program to reformat date in YYYY-MM-DD format using Python
- MySQL date format DD/MM/YYYY select query?
- How to format a string to date in as dd-MM-yyyy using java?
- How to validate given date formats like MM-DD-YYYY using regex in java?
