Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text box

Status
Not open for further replies.

Impactgc

MIS
Sep 16, 2000
1
US
I have hopefully a easy question... I have a text box for example...

"The charge for this item is:$25.00 ."

Now the $25.00 is a field in my table. I am combining the statements:
Me![test] = "The charge for this item is:" & [ItemCharge] & " ."

For some reason it is not formating that field.. Yes it is currency field and format with 2 decimal points..

by the way I am doing this in a report....

Any ideas ,
Thanks
Adam
[sig][/sig]
 
Try this;

Me![test] = "The charge for this item is: " & Format([ItemCharge], "$#,##0.00") [sig][/sig]
 
as above, but use the CURRENCY, to make the app, currency independent

e.g. format(1234.00,"CURRENCY") .. in US $1,234.00, but in UK £1,234.00

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top