Page 1 of 1

set mask in a field

Posted: Wed Jan 07, 2009 7:38 am
by Paulo Victor Benini
Hello,
In my report i need use a custom mask in a field to represent a money value (ex. 1.512.321,00) in brasilian format.
I tried use the format function "{Format("{0}", "")}" in my field "{contas.faturamento}", but I don't know how to use this function with a field, somebody can help me?

Thanks

set mask in a field

Posted: Wed Jan 07, 2009 11:57 am
by Vital
Hello,

You can use following expression:

Code: Select all

{Format("{0}", contas.faturamento)}
or you can use TextFormat property of text components.

Thank you.