Format Currency

R

Roger Bell

I have the following text box in a report:

=Trim("Thank You for your Total Contribution of" & "" & [text235])

I would like the [text235] to be displayed as currency with 2 decimal
places. Could someone please advise where I add the Format Currency command
and the correct placement?

Thanks for any help
 
B

Beetle

=Trim("Thank You for your Total Contribution of " & Format(CCur( [text235]),
"Currency"))
 
F

fredg

I have the following text box in a report:

=Trim("Thank You for your Total Contribution of" & "" & [text235])

I would like the [text235] to be displayed as currency with 2 decimal
places. Could someone please advise where I add the Format Currency command
and the correct placement?

Thanks for any help

="Thank You for your Total Contribution of " & Format([text235],
"$#,##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