• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Conver DD.MM.YYYY into DD/MM/YYYY

Agil

New Member
Hi,


I have the data format in dd.mm.yyyy. Please advise me how to convert it to DD/MM/YYYY.


Thank you
 
Agil


Use a Custom Number Format


Right Click on the cell

Format Cells

Number Tab

Custom

type in dd/mm/yyyy

Apply
 
Hi, Agil!

Additionally to Hui's response, which I join, if you have the data as text and not date (number) format, you may use:

a) =DATEVALUE(SUBSTITUTE(A1,".","/"))

b) =DATE(RIGHT(A1,4);MID$(A1,4,2);LEFT(A1,2))

Regards.
 
Back
Top