Forum Discussion
Mail Merge Dates Issue
Excel dates are just numbers (the number of days since Dec 31, 1899) So when you write "Date shown in Excel", the phrase is dependent upon that format you are displaying that number.
So, in Mail Merge, you can also set the number of the date in a specific format. From a fellow MCT page, here are some examples.
Field Code Displayed Results
{ MERGEFIELD Date \@ “dddd, MMMM d, yyyy” } Saturday, July 9, 2022
{ MERGEFIELD Date \@ “MM/dd/yyyy” } 07/09/2022
{ MERGEFIELD Date \@ “M-d-yy” } 7-9-22
{ MERGEFIELD Date \@ “MMMM d, yyyy” } July 9, 2022
https://thesoftwarepro.com/date-text-mail-merge-formatting-in-word-document/
And I just saw Han's reply. Go with his
this doesn't always work. I had to create a new column with =TEXT(A1,"mm-dd-yyyy") then copy paste the values only to columns A. That provided the correct format in the mailmerge.