Currency Field Not Translating

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

I have a Currency Field That the Format is Currency.
This works fine.
However;
When I put it in an Expression it only shows it as such
$7.50 becomes 7.5 etc.
[ItemName]&" "&[Money]
What am I doing wrong?
Thanks
DS
 
If you are putting the field value in a formula like that, then the "format"
is not used. You'd need something like...


=[ItemName] & " " & Format([Money],"currency")
 
Rick said:
If you are putting the field value in a formula like that, then the "format"
is not used. You'd need something like...


=[ItemName] & " " & Format([Money],"currency")


---
Rick B



I have a Currency Field That the Format is Currency.
This works fine.
However;
When I put it in an Expression it only shows it as such
$7.50 becomes 7.5 etc.
[ItemName]&" "&[Money]
What am I doing wrong?
Thanks
DS
Rick, Your right on as Usual. Thank You
DS
 

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