How do I set up a field that has a currency value to appear in the format ######, ##
Solved! Go to Solution.
Hi @Anonymous ,
Could you show the example of the formatted number?
I seem to have found your problem. In your region, decimals are separated by commas, so 'ThisItem.Total' should be a text, right?
It should be converted to Number and then formatted by Text function.
"R$" & Text(Value(Substitute(ThisItem.Total;".";",")); "[$-de]####,00")
Then, it should as R$87,00
Hope this helps.
Sik
Hi @Anonymous ,
If you want to format the number, please try with Text Function.
Please try to set the Text property as below:
Text(ThisItem.Total; "######, 00")
Hope this helps.
Sik
Hi @Anonymous
I think the Text formula might not be correct, there is a semi-colon (;) where there should be a comma (,) in the middle of the formula
Try "R$" & Text(ThisItem.Total,"####.##")
-----
If this post has answered your question please consider it for "Accept as Solution" or if it has been helpful give it a "Thumbs Up".
Hi @Anonymous ,
Could you show the example of the formatted number?
I seem to have found your problem. In your region, decimals are separated by commas, so 'ThisItem.Total' should be a text, right?
It should be converted to Number and then formatted by Text function.
"R$" & Text(Value(Substitute(ThisItem.Total;".";",")); "[$-de]####,00")
Then, it should as R$87,00
Hope this helps.
Sik
Sik!
Now it worked, thank you very much for your help and see you next time.
Hugs
User | Count |
---|---|
19 | |
9 | |
8 | |
5 | |
5 |
User | Count |
---|---|
31 | |
29 | |
18 | |
17 | |
4 |