Share via

Dates Appearing Backwards

Anonymous
2015-03-15T21:07:55+00:00

Hi All,

I have some dates saved in an Access App in Sharepoint. I've linked the database into an excel spreadsheet but the dates or returning backwards. They are saved in the database as DD/MM/YYYY but are displaying YYYY/MM/DD. I don't understand why this is happening and I've checked the data format in excel and it is saying it should appear as DD/MM/YYYY. It's also doing this in a mail merge in word.

Any help is much appreciated!

Regards,

Matt

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Ashish Mathur 101.9K Reputation points Volunteer Moderator
2015-03-16T23:08:55+00:00

Hi,

Try this formula in cell B2 and copy down

=DATE(LEFT(A2,4),MID(A2,5,2),RIGHT(A2,2))

Hope this helps.

Was this answer helpful?

0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2015-03-17T04:21:42+00:00

    You may also use this alternate formula.

    =VALUE(RIGHT(A2,2)&"/"&MID(A2,6,2)&"/"&LEFT(A2,4))

    Also in Ashish's formula, do a very small correction, change 5 to 6 in MID formula as your month starts from 6th character.

    =DATE(LEFT(A2,4),MID(A2,6,2),RIGHT(A2,2))

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-03-16T19:50:15+00:00

    Hi Ashish,

    That did fix it until I refreshed the data. Is there something that will permanently format the data in the required format?  And also a way to implement this into Word aswell?

    Regards,

    Matt

    Was this answer helpful?

    0 comments No comments
  3. Ashish Mathur 101.9K Reputation points Volunteer Moderator
    2015-03-15T23:30:33+00:00

    Hi,

    Select the range which has the dates and go to Data > Text to columns > Delimited > Next > Next > Date > YMD > Finish

    Hope this helps.

    Was this answer helpful?

    0 comments No comments