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
-
- Posts: 12
- Joined: Wed Jan 07, 2009 5:06 am
- Location: Cornélio Procópio
set mask in a field
Hello,
You can use following expression:
or you can use TextFormat property of text components.
Thank you.
You can use following expression:
Code: Select all
{Format("{0}", contas.faturamento)}
Thank you.