Currency.From(value as any, optional culture as nullable text, optional roundingMode as nullable number) as nullable number
About
Returns a currency value from the given value. If the given value is null, Currency.From returns null. If the given value is number within the range of currency, fractional part of the value is rounded to 4 decimal digits and returned. If value is of any other type, it will first be converted to a number using Number.FromText. Valid range for currency is -922,337,203,685,477.5808 to 922,337,203,685,477.5807. Refer to Number.Round for the available rounding modes. The default is RoundingMode.ToEven. An optional culture may also be provided (for example, "en-US").
Example 1
Get the currency value of "1.23455".
Usage
Currency.From("1.23455")
Output
1.2346
Example 2
Get the currency value of "1.23455" using RoundingMode.Down.
In today's global market, businesses receive and send payments using different currencies. Exchange rates must be managed properly to lower the monetary loss when accepting multiple currencies. Understanding how to forecast the amount of loss or gain caused by changes in exchange rate values can help you make smart business decisions to handle cash discounts and payments.