Share via

Failed to transform date format from m/dd/yyyy to dd/mm/yyyy

Kritiman Singh 0 Reputation points
2026-05-04T11:06:26.8266667+00:00

Hi team,

I'm trying to change/transform date formate from m/dd/yyyy to dd/mm/yyyy but failed to transform and all of my method's failed during work.

I've attached screenshot for reference so that you all can do operation and suggest me the correct method to do it every time in every data of date format.

(Kindly help me to share the .xlsx file)

#excel #dateformate #date

User's image

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments

6 answers

Sort by: Most helpful
  1. Umair Fazal 0 Reputation points
    2026-05-05T09:00:34.12+00:00

    Results Are As Worker

    0 comments No comments

  2. Ashish Mathur 101.8K Reputation points Volunteer Moderator
    2026-05-04T23:08:16.3366667+00:00

    Hi,

    Try this approach.

    1. Select the dates in column E and go to Data > Sort. Sort the table on column E in ascending order
    2. With that range selected, go to Data > Filter > Number Filter/Text filter > Equals. Type * and enter
    3. With that range selected, go to Data > Text to Columns > Delimited > Next > Next > Date > MDY > Finish

    Hope this helps.

    0 comments No comments

  3. Senthil kumar 110 Reputation points
    2026-05-04T12:07:19.1666667+00:00

    Hi Kritiman Singh,

    • By default excel use our machine date time format. as per your screenshot your machine date time format represents 'mm/dd/yyyy'
    • enter your desired date like this format 'yyyy/mm/dd'. then right click goto Format cells.
    • select custom enter your desired format 'dd/mm/yyyy' the click ok button. automatically changed to your desired date time format.

    User's image

    User's image

    User's image

    Thanks

    0 comments No comments

  4. Henry-N 12,630 Reputation points Microsoft External Staff Moderator
    2026-05-04T12:07:07.61+00:00

    Hi @Kritiman Singh

    Thank you for posting your question in the Microsoft Q&A forum. 

    Regarding your request to change the date format from mm/dd/yyyy to dd/mm/yyyy, as the AI recommended above, you could follow the step by step instructions below for more details: 

    Example: If you have a list of dates currently displayed in mm/dd/yyyy format: 

    1. Select the range of cells containing the dates you want to change.  User's imageUser's image
    2. Right click on the selected cells and choose Format Cells.  User's image
    3. In the Number tab, select Custom.  User's image
    4. Enter the format dd/mm/yyyy.  User's image
    5. Click OK.  User's image

    The date format will now be changed from mm/dd/yyyy to dd/mm/yyyy. 

    Thank you again for your time and understanding. If this does not fully resolve the issue, please feel free to share more details about your situation so I can assist you more effectively. 

    I appreciate your patience and look forward to your response.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".                 

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread


  5. Q&A Assist
    2026-05-04T11:06:48.14+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    In the screenshot the dates in the right-hand column are text in m/dd/yyyy format. To convert them to real dates and display as dd/mm/yyyy, first convert the text to dates, then apply a custom date format.

    1. Insert a new helper column next to the text dates.
    2. Suppose the first text date is in M2. In the helper column (for example N2) enter a formula that converts the text to a date value, such as:
         =DATE(RIGHT(M2,4), LEFT(M2,FIND("/",M2)-1), MID(M2,FIND("/",M2)+1, FIND("/",M2,4)-FIND("/",M2)-1))
      
      Fill this formula down for all rows.
    3. Select the helper column with the formula results.
    4. Press Ctrl+1 to open Format Cells.
    5. On the Number tab choose Custom.
    6. In Type, enter:
         dd/mm/yyyy
      
      and select OK.
    7. If needed, copy the helper column and use Paste Special > Values over the original text dates, then delete the helper column.

    This ensures the values are stored as true dates and consistently displayed as dd/mm/yyyy.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.