How are you inserting the information into the bookmark?
If you use Format() in a query in Access, it will convert the numeric
value of 500 to a string of £500.00
If you use code like the following to insert some Access data into a Word
document.
documentobject.Bookmarks("somebookmark").Range.InsertBerfore
Format([AccessData], "£#,###.00")
you would get £500.00 inserted into the .Range of the bookmark.
If you are using mail merge to insert the data into Word (in which case
the reference to a bookmarked field is not relevant, you would add a
\# "£,#.00"
formatting switch to the mergefield code.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
Tom said:
Hi Doug
If I use Format([AccessData], "£#,###.00") in Access the data still
appears in Word as 500.
Tom
Use Format([AccessData], "£#,###.00")
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
Hi hope this is the right place for this question.
Am using Access & Word 2002 and using Officice Automation to pass
Access data to a Word document.
Where I am having a problem is from Access I am bring over a currency
field e.g. £500.00 but in the bookmarked field in Word it shows as
500.
How can I get it to show as £500.00 in Word.
TIA
Tom