Carrot reference
...
Fields
Data Types
Money
A datatype used to represent a monetary value.
Money values can use any math operations, such as addition, subtraction, rounding and division.
- If two Money values of the same currency are used together in a formula, they will be added normally. (Example: EUR100 + EUR200 = EUR300)
- If two Money values of different currencies are used together in a formula, they will be converted to the org's default currency, using the exchange rate currently in effect as-of that date.
To represent a Money in an expression, use the money() function. You can also use this function to convert between money currencies.
- For example: money(1000, 'USD') will resolve to USD $1000