I am doing a project where I am sending data to Word via Bookmarks.
For the price of the item:
.ActiveDocument.Bookmarks(“ATMPrice”).Select
.Selection.Text = (CStr(Forms!frmDataEntryATMPurchaseSetup!ATMPrice))
When I send the data to Word it is sending it as unformatted text. How can I make it show with a comma & 2 decimal places (5,583.00) as an example if the price does not have any cents. In Access the field has a data type of ‘Currency’.
Thanks!