Problem with properties when merging to Word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have made a mailmerge with a query as the source. There are some
calculated fields. When running the query in Access I get for example the
result € 5,00 or € 5,50. Merging to Word the value becomes € 5 or € 5,5 in
the merged document.

Please help!

Thanx

Paul
 
Format the computed column as text in the query. As this seems to be
currency data you should be able to do it with something like:

SELECT
OrderNumber, OrderDate, Customer,
Format(Amount * (1 + VATRate),"Euro") As GrossAmount
FROM Orders
ORDER BY OrderDate;

Or you can use a customized format expression in place of "Euro".
 
Use the Format function on your calculated fields to convert them into
appropriate strings.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top