
Originally Posted by
trident
I created a Data Collection form that will be merged in MS Word.
2 problems encountered is when merge in MS Word, the following are showing:
|
ms access (Form) |
ms word |
Currency |
2,000.00 |
2000 |
Date |
19-June-2017 |
6/19/2017 |
How can I make the data appear in MS Word just the same as in MS Access.
I have updated the table in MS Access save the same as what I need but still the same result when merging in ms word.
Thank you for the assistance.
Trident
Trident,
Word sees the data from an Access table the way it is acutually stored. Only Acess can use the dsiplayformat properties.
In Word it is possibel to add formatting to Merge fields that match the display formatting in Access..
Date example:
Code:
{MERGEFIELD Date @ “d-MMM-yyyy”}
Currency Example:
Code:
{MERGEFIELD MoneyAmount # “$,0.00;($,0.00)”}
See: Office Watch: Formatting Mail Merge fields