Skip to main content

How to convert dd/mm/yyyy to mm/dd/yyyy in Excel cells?

In Excel, the standard date format is mm/dd/yyyy, but in some cases, the dates in the files you received or import are in the format dd/mm/yyyy, how can you change these dates from dd/mm/yyyy format to mm/dd/yyyy in Excel as below screenshot shown?
doc ddmmyy mmddyy 1

Convert dd/mm/yyyy to mm/dd/yyyy with Formulas

Convert dd/mm/yyyy to mm/dd/yyyy with Text to Column


Convert dd/mm/yyyy to mm/dd/yyyy with Formulas

There is a formula that can quickly convert dd/mm/yyyy to mm/dd/yyyy date format.

Select a blank cell next to the dates you want to convert, type this formula =DATE(VALUE(RIGHT(A9,4)), VALUE(MID(A9,4,2)), VALUE(LEFT(A9,2))), and drag fill handle over the cells which need to use this formula.
doc ddmmyy mmddyy 2

Note: A9 is the date you use to convert.


Add same text to a specific location of each cell in Excel

How could you add text or characters to the beginning of multiple cells, or add text or characters to the end of cells or insert text or characters between existing text? With Add Text utility of Kutools for Excel, you can quickly apply the following operations: . Click for full-featured free trial in 30 days!
doc add text 6
 
Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in full future 30 days.

Convert dd/mm/yyyy to mm/dd/yyyy with Text to Column

Also, you can split the date format into columns by the Text to Columns feature, and then combine with a formula with the new order.

1. Select the dates you want to convert, and click Data > Text to Columns. See screenshot:
doc ddmmyy mmddyy 3

2. In Step 1 of Convert Text to Columns Wizard, check Delimited option. See screenshot:
doc ddmmyy mmddyy 4

3. Click Next, and check Other, and type / into the next to text box. See screenshot:
doc ddmmyy mmddyy 5

4. Click Next, and select a cell to output the data in Destination box. See screenshot:
doc ddmmyy mmddyy 6

5. Click Finish. Then the dates have been split into columns.
doc ddmmyy mmddyy 7

6. Select a blank cell, and type this formula =C1&"/"&B1&"/"&D1, drag auto fill handle down to the cells needed this formula.

doc ddmmyy mmddyy 8
doc arrow down
doc ddmmyy mmddyy 9

Note: In the formula, C1, B1 and D1 are the delimited cells.


Relative Articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (18)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
How to change from MM/DD/YYYY to DD/MM/YYYY?
Thanks
This comment was minimized by the moderator on the site
This is my most adaptable decoder for a MM/DD/YYYY date:

=DATE(RIGHT(A2,4),LEFT(A2,SEARCH("/",A2) -1),MID(A2,SEARCH("/",A2)+1,LEN(A2)-(5+SEARCH("/",A2))))
This comment was minimized by the moderator on the site
Use following Formula
=IFERROR(IF(DAY(B2)>12,DAY(B2)&”/”&MONTH(B2)&”/”&YEAR(B2),VALUE(DATE(YEAR(B2),DAY(B2),MONTH(B2)))),DATE(VALUE(RIGHT(B2,4)), VALUE(MID(B2,4,2)), VALUE(LEFT(B2,2))))
This comment was minimized by the moderator on the site
How to I convert or change a date format?
MM/DD to DD/MM/YYYY
Example: Dec/1 to 01/12/2021
This comment was minimized by the moderator on the site
Hello, Karthik, convert MM/DD to DD/MM/YYYY, only select the dates cells, then press Ctrl + 1 to enable the Format Cells dialog, then under Number tab, then choose Custom in the Category list, and go to right section, type dd/mm/yyyy into the Type textbox, click OK. Now the dates are converted to the date format as you need. 
This comment was minimized by the moderator on the site
How about if the date comes with time? Like this 1/5/2021 8:26:00 AM, how to make it to 5/1/2021 8:26:00 AM, please help, thank you. The date is supposed to be May 1 not January 5, thanks!
This comment was minimized by the moderator on the site
Hi, Joy. Just use Text to Columns to split them by / , for example, 1/5/2021 8:26:00 AM will be split into 1 5 and 2021 8:26:00 AM, then use the formula to combine them.
This comment was minimized by the moderator on the site
How to I convert or change a date format?
YYYY/MM to MM/DD/YYYY
Example: 1955/12 to 12/01/1955
This comment was minimized by the moderator on the site
Hi, Turrell Taylor, try to change the cell format to mm/dd/yyyy by clicking Home tab, and go to the Number group to select Date from the Number format drop-down menu.
This comment was minimized by the moderator on the site
how to change date format in excel from dd-mm-yyyy to dd/mm/yyyy
This comment was minimized by the moderator on the site
Thank you so much its too Easy and much helpful God bless you
This comment was minimized by the moderator on the site
Thanks, it's amazing. Helped me lot.
This comment was minimized by the moderator on the site
name faizahmad last name timori 1987
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations