Number.Exp
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns a number representing e raised to a power.
Number.Exp(number as nullable number) as nullable number
| Argument | Description |
|---|---|
| number | A number for which the exponential function is to be calculated. If number is null, Number.Exp returns null. |
Number.Exp(0) equals 1
Number.Exp(3) equals 20.085536923187668
Show: