Select the cell or cells that you want to apply the date format to and tap Ctrl+1. When the Format Cells dialog opens, go to the Number tab and select Date from the left hand Category: list. Select 03/14/01 from the Type: list on the right and click OK in the lower right.

Edit: it has occurred to me that your regional setting may default the date formats available from mm/dd/yy to dd/mm/yy, If this is the case, select Custom from the left hand Category: list and manually type in mm/dd/yy to the Type: text box. Click OK to accept the new custom number format.

You can also set the system wide defaults for regional date, currency, etc. through the Control Panel's Region and Language applet.

🌐
Microsoft Support
support.microsoft.com › en-us › office › format-a-date-the-way-you-want-in-excel-8e10019e-d5d8-47a1-ba95-db95123d273e
Format a date the way you want in Excel - Microsoft Support
When you enter some text into a cell such as "2/2", Excel assumes that this is a date and formats it according to the default date setting in Control Panel. Excel might format it as "2-Feb". If you change your date setting in Control Panel, the default date format in Excel will change accordingly.
Discussions

How to format cells from *m/dd/yyyy to dd/mm/yyyy without re-arranging the existing dates?
The below column of dates are all properly written (i.e., in a dd/mm/yyyy configuration), but all of the cells within the data column are incorrectly formatted as *m/dd/yyyy within Format Cells. 29/07/2022 28/07/2022 27/07/2022 26/07/2022 25/07/2022… More on learn.microsoft.com
🌐 learn.microsoft.com
2
270
December 2, 2022
Formula to format "MM/DD/YYYY" and "M/D/YYYY" strings as date in Excel - Stack Overflow
I have strings in two formats in the Excel column "MM/DD/YYYY" (04/06/2020 etc.) and "M/D/YYYY" (3/18/2021 etc.). I would like to change them to date. The below formula works on... More on stackoverflow.com
🌐 stackoverflow.com
How to change the excel date format from DD/MM/YYYY to YYYY-MM-DD
Hi I want to change the date format from a column, I tried format cells from excel activities, but it doesn’t have the format I want. How can I do this? More on forum.uipath.com
🌐 forum.uipath.com
1
0
April 3, 2023
Date Format "dd/MM/yyyy" Goes Wrong While Writing in Excel
Hello All, I get a date from Date.Today.ToString(“dd/MM/yyyy”) and my date format in Excel is English(United Kingdom) which is same format (dd/MM/yyyy) . However when I use ‘Write Cell’ function into Excel sheet the format turns to “MM/dd/yyyy”. How can I solve this problem? More on forum.uipath.com
🌐 forum.uipath.com
0
January 2, 2020
🌐
Ablebits
ablebits.com › ablebits blog › excel › date › how to change excel date format and create custom formatting
How to change Excel date format and create custom formatting
October 10, 2023 - Hi! Check if the value 1/13/2000 matches the date format used in your computer. For example, if you use the date format dd-mm-yyyyy, this value will be written as text. Therefore, you cannot change its format. The following tutorial should help: How to convert text to date in Excel.
Top answer
1 of 5
3

Formula in B2 is

=DATEVALUE(TEXTJOIN("-",TRUE,CHOOSECOLS(TEXTSPLIT(A1,"/"),3,1,2)))

Working from the inside out:

TEXTSPLIT to split the string into month, day, year

CHOOSECOLS to reorder the strings into year, month, day

TEXTJOIN to join those strings with a - that will be recognized by the DATEVALUE formula

DATEVALUE to turn the strings into a date, and it won't matter whether they are single or double digits for month and date.

2 of 5
2
=DATE(
    INDEX(FILTERXML("<t><s>" & SUBSTITUTE(A1, "/", "</s><s>") & "</s></t>", "//s"), 3),
    INDEX(FILTERXML("<t><s>" & SUBSTITUTE(A1, "/", "</s><s>") & "</s></t>", "//s"), 1),
    INDEX(FILTERXML("<t><s>" & SUBSTITUTE(A1, "/", "</s><s>") & "</s></t>", "//s"), 2)
)

Will convert text strings in an MDY type format with a / separator into a proper date. You can then format it as you wish.

If you might have other delimiters, nest SUBSTITUTE functions to take cared of that.

For example, if you might have either a / or a ., you would modify the formula to:

=DATE(
    INDEX(
        FILTERXML(
            "<t><s>" & SUBSTITUTE(SUBSTITUTE(A1, ".", "/"), "/", "</s><s>") & "</s></t>",
            "//s"
        ),
        3
    ),
    INDEX(
        FILTERXML(
            "<t><s>" & SUBSTITUTE(SUBSTITUTE(A1, ".", "/"), "/", "</s><s>") & "</s></t>",
            "//s"
        ),
        1
    ),
    INDEX(
        FILTERXML(
            "<t><s>" & SUBSTITUTE(SUBSTITUTE(A1, ".", "/"), "/", "</s><s>") & "</s></t>",
            "//s"
        ),
        2
    )
)

Algorithm:

  • Create an XML from the date, replacing the delimiter with the node identifier
  • Since we know there will only be three segments, and they are in the order MDY, we can feed those results into the DATE function to create our "real date"
  • You can then format the date however you wish

🌐
Excel Forum
excelforum.com › excel-formulas-and-functions › 990750-change-mm-dd-yyyy-to-dd-mm-yyyy.html
Change mm/dd/yyyy to dd/mm/yyyy [SOLVED]
If value needed: =--TEXT(DATEVALUE(C16),"mm/dd/yy") or =DATEVALUE(TEXT(DATEVALUE(C16),"mm/dd/yy")) ... Or use Text To Columns Option. Select the Data Column>>Press Alt+D+E>>Delimited>>Next>>Next>>Column Data Format>>Date>>Select your desired date format in the drop down>>Click Finish
Find elsewhere
🌐
Medium
medium.com › @aleksej.gudkov › fixing-excel-date-format-dd-mm-yyyy-not-working-issue-83c4933fd74f
Fixing “Excel Date Format DD/MM/YYYY Not Working” Issue | by UATeam | Medium
December 8, 2024 - Click Additional Settings, go to the Date tab, and confirm that the Short Date format is set to dd/MM/yyyy. Click Apply and restart Excel.
🌐
UiPath Community
forum.uipath.com › help › studio
How to change the excel date format from DD/MM/YYYY to YYYY-MM-DD - Studio - UiPath Community Forum
April 3, 2023 - Hi I want to change the date format from a column, I tried format cells from excel activities, but it doesn’t have the format I want. How can I do this?
🌐
Alteryx
alteryx.com › home › how to change date format in excel
How to Change Date Format in Excel | Alteryx
August 12, 2025 - If you are trying to change the date display to DD/MM/YYYY, simply go to Format Cells > Custom
🌐
UiPath Community
forum.uipath.com › help
Date Format "dd/MM/yyyy" Goes Wrong While Writing in Excel - Help - UiPath Community Forum
January 2, 2020 - Hello All, I get a date from Date.Today.ToString(“dd/MM/yyyy”) and my date format in Excel is English(United Kingdom) which is same format (dd/MM/yyyy) . However when I use ‘Write Cell’ function into Excel sheet the for…
🌐
JustAnswer
justanswer.com › microsoft-office › oi85p-excel-when-enter-date-after-formatted-it.html
In Excel, when I enter a date (after I have formatted it) as MM/DD/YYYY, Excel changes the numbers of the month and day
Right-click the cells or column in question, select 'Format Cells,' then choose 'Date,' and select the specific format you're after. If the standard options don't work, you can use the custom option to specify exactly how you want it displayed ...