Formatting Currency

leo25031

New member
Local time
Today, 05:36
Joined
Apr 21, 2009
Messages
3
Hi,
How can I change the format of currency in a table or query for another country like Brazil to US?

Brazil
286.363,966

US
286,363.96
 
Use the format function:

ConvertedField: Format([FieldToConvert],"$#,###.00")

JR
 
You can call an apple an orange... but it's still an apple...... Don't you first need to insert the calculation to change USD to BRL???
 
I assume the OP is aware of this fact thats why I called it "FieldToConvert", but for the sake of the argument you could do it whitin the format function.

ConvertedField: Format(([LocalCurrency]*[ExchangeRate]), "$#,###.00")

JR
 

Users who are viewing this thread

Back
Top Bottom