Reputation: 93
I have a very troublesome date format that I need to convert to standart short date as DD.MM.YYYY. I have tried some formulas as below but I cannot reach the true output. Any help will be appreciated...
Upvotes: 0
Views: 93
Reputation: 152505
Use this:
=DATE(MID(A1,7,4),MID(A1,4,2),LEFT(A1,2))
Then format it as DD.MM.YYYY
Upvotes: 1