A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Results Are As Worker
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Results Are As Worker
Hi,
Try this approach.
Hope this helps.
Hi Kritiman Singh,
Thanks
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:
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
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.
=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.Ctrl+1 to open Format Cells. dd/mm/yyyy
and select OK.This ensures the values are stored as true dates and consistently displayed as dd/mm/yyyy.
References: