Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dears,
How can I format a text object value as Currency (in USD)?
The problem is that today the value is presented like: 123456789.00 (coz I created a formula to create the decimal value). And I would like to present the value like: USD 123,456,789.00
How can I do it?
Thanks for your attention
Best regards
Hi,
If you use num fuction it will be only a mask for you numbers. There is no difference for text objects, but you could use the exactly same expression on a chart and it would be recognized as a number when you export it to excel (instead of a string).
try:
=NUM( sum(value),'USD #,##0.00', '.',','),
where sum(value) can be replaced by any of your expressions.
Hi kelly.
In your text box just try the following code to append usd as first.
='USD '&
sum(Sales)
Hope that helps
Regards
ASHFAQ
Hi,
If you use num fuction it will be only a mask for you numbers. There is no difference for text objects, but you could use the exactly same expression on a chart and it would be recognized as a number when you export it to excel (instead of a string).
try:
=NUM( sum(value),'USD #,##0.00', '.',','),
where sum(value) can be replaced by any of your expressions.
Thanks Erich.
It really solved my problem!
Hi,
If I understood your problem here is the solution.Let me know the query if any...
'USD'&NUM((USD),'###,###,###.##')
Thanks & Regards
Jai