Currency Format

tacieslik

Registered User.
Local time
Today, 11:07
Joined
May 2, 2001
Messages
244
How can i make the following result display the a pound (£) symbol and to 2 decimal places:

Code:
="Total Unpaid for" & [fldMonth] & "  " & Sum([fldProfit])

This textbox currently displays in my report as " Total Unpaid for July 191.123 "
(without quotes!)
 
you should make the field set to currency and set the amount of decimal places from the properties window
 
Thanks for your reply but the first thing I tried was to adjust the property for the data format and the decimal places in the Properties dialog?
 
Actually, I've got it putting a £ sign in simply by doing this:

Code:
="Total Unpaid for" & [fldMonth] & "  " & "£" & Sum([fldProfit])

The problem is the decimal places?
 
since you contain text as well in your textbox, you cannot set it to currency:

="Total Unpaid for" & [fldMonth] & " " & Sum([fldProfit])

why don't you place the pound sign between the quotes ?

="Total Unpaid for" & [fldMonth] & " £ " & Sum([fldProfit])

and then in the properties dialog of [fldProfit] set the decimal places to 2.

Not sure if it is the best approach but it should get you going!
 
="Total Unpaid for" & [fldMonth] & " " & Format(Sum([fldProfit]),"Currency")
 

Users who are viewing this thread

Back
Top Bottom