Double.From is a Power Query M function that converts a given value to a Double number. The function returns a Double number value or null if the input value is null.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Double.From(
value as any,
optional culture as nullable text,
) as nullable number
Description
Returns a Double number
value from the given value
. If the given value
is null
, Double.From
returns null
. If the given value
is number
within the range of Double, value
is returned, otherwise an error is returned. If value
is of any other type, it will first be converted to a number
using Number.FromText
. An optional culture
may also be provided (for example, “en-US”).
Examples
Get the Double number
value of "4"
.
// Output: 4.5
Double.From( "4.5" )
Related functions
Other functions related to Double.From are:
- Byte.From
- Currency.From
- Decimal.From
- Int16.From
- Int32.From
- Int64.From
- Int8.From
- Number.From
- Number.FromText
- Number.ToText
- Percentage.From
- Single.From
