You need to sign in to do that
Don't have an account?
Brian Oconnell WPD
Formula to return Currency Code from a currency field
I would like a formula field to return the Currency Code (USD, EUR, JPY) from a field with datatype "Currency" on a custom object. How can I do this?
Thank you
Thank you
your formula might look something like this
IF(
LEFT($Currency,3)="USD", "USD",
IF(
LEFT($Currency,3)="EUR", "EUR",
IF(
LEFT($Currency,3)="JPY", "JPY",
'')
)
)
This formula will return USD if the first 3 letters from currency field starts with USD and the same with EUR and JPY.
Thank you.