Format a Query as Currency not Double How??

  • Thread starter Thread starter Joe M
  • Start date Start date
J

Joe M

How do I format a Query as Currency and not as double.eg
Tax: [Sales] * 1.1
this would default to double ....
 
If Sales is already currency, try:

Tax: [Sales] * CCur(1.1)

If it's not, try:

Tax: CCur([Sales]) * CCur(1.1)
 

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