Excel: Convert Date Format from European to U.S.

Excel is a powerful and versatile tool that can help streamline and simplify many aspects of our lives. One of the key features of Excel is its ability to convert date formats from European to U.S. format. This feature makes it easier for users to accurately and quickly analyze and visualize data across different regions. The ability to convert dates between formats can be especially useful for those who frequently work with international data sets or collaborate with people in different countries. With this feature, Excel users can quickly and easily make data across different regions compatible, allowing for more efficient and accurate analysis. This tutorial will provide a step-by-step guide for how to convert date formats in Excel from European to U.S. format.


Europe uses a standard date format of dd/mm/yyyy while the U.S. uses a standard date format of mm/dd/yyyy.

You can easily convert a European date format to a U.S. date format in Excel by using the following formula:

=CONCAT(TEXTBEFORE(TEXTAFTER(A2, "/"), "/"), "/", TEXTBEFORE(A2, "/"), "/", TEXTAFTER(A2, "/", 2))

This particular formula converts the date in cell A2 from a European date format to a U.S. date format.

For example, this would convert a European date format of 14/5/2023 to a U.S. date format of 5/14/2023.

The following example shows how to use this formula in practice.

Example: Convert Date Format from European to U.S. in Excel

Suppose we have the following list of dates in Excel that are currently in a standard European date format:

We can type the following formula into cell B2 to convert the date format in cell A2 to a standard U.S. date format:

=CONCAT(TEXTBEFORE(TEXTAFTER(A2, "/"), "/"), "/", TEXTBEFORE(A2, "/"), "/", TEXTAFTER(A2, "/", 2))

We can then drag and fill this formula down to each remaining cell in column B:

Excel convert European date format to U.S. date format

Column B now displays each date from column A in a standard U.S. date format.

For example:

  • 14/5/2023 is converted to 5/14/2023.
  • 20/6/2023 is converted to 6/20/2023.
  • 23/6/2023 is converted to 6/23/2023.

And so on.

How This Formula Works

Recall the formula that we used to convert the European date format in cell A2 to a U.S. date format:

=CONCAT(TEXTBEFORE(TEXTAFTER(A2, "/"), "/"), "/", TEXTBEFORE(A2, "/"), "/", TEXTAFTER(A2, "/", 2))

Here is how this formula works:

First, we use TEXTBEFORE(TEXTAFTER(A2, “/”), “/”) to extract the text between the two slashes in the date.

For the date of 14/5/2023 in cell A2, this extracts 5.

Then we use TEXTBEFORE(A2, “/”) to extract the text before the first slash. This extracts 14.

Then we use TEXTAFTER(A2, “/”, 2) to extract the text after the second slash. This extracts 2023.

Lastly, we use the CONCAT function to concatenate each of these values together with slashes to return the final result of 5/14/2023.

The formula uses this same process to convert each European date in column A into a U.S. date format in column B.


In conclusion, this tutorial has demonstrated how to convert a European date format to a U.S. date format in Excel using the CONCAT function. This particular formula is useful when you need to quickly convert multiple dates from a European format to a U.S. format. With this formula, you can easily convert any date from a European date format to a U.S. date format in Excel.

x