Formatting a query calculated field

K

Kass

I have a query and subsequent report that I'm using an
expression in the field to figure the Designer's Fee. The
calculation part works fine, but I can't get it fomatted
to show up as currency. I have the original table field
set up as currency and have tried the properties windows
on both the query and report. I still can't get the
calculated field to show up formatted as currency.
Example, instead of $15.00 it shows up as 15; 12.50 shows
up as 12.5. Any ideas?
 
F

fredg

I have a query and subsequent report that I'm using an
expression in the field to figure the Designer's Fee. The
calculation part works fine, but I can't get it fomatted
to show up as currency. I have the original table field
set up as currency and have tried the properties windows
on both the query and report. I still can't get the
calculated field to show up formatted as currency.
Example, instead of $15.00 it shows up as 15; 12.50 shows
up as 12.5. Any ideas?

Kass,
Exp:Format([SomeField] + [OtherField],"Currency")
or:
Exp:Format([SomeField] + [OtherField],"$#,##0.00")
 

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

Top