concatenate text field and money field

biskra

Registered User.
Local time
Today, 22:23
Joined
Jan 12, 2004
Messages
36
i use this code for concatenate 2 fields in my report

CODE
Code:
=[name] & " - " & [price1]
it works fine, my only problem is i can't see the symbol money in my texte boxe on my report like "book - 500.00$"
any help.
sorry for my bad english
 
Hi!

You could have it hard coded in:

=[name] & " - " & [price1] & "$"

Or you could format it specifically:

=[name] & " - " & format([price1], $#,###.00)

Hope that helps!
 
ok i use this

Code:
=[condamnation] & " " & FormatCurrency([ammande])
 
sorry

=[name] & " " & FormatCurrency([price1])
 

Users who are viewing this thread

Back
Top Bottom