Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
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
.
Usage
Currency.From("1.23455", "en-US", RoundingMode.Down)
Output
1.2345