Number.Exp is a Power Query M function that raises the mathematical constant e to the power of a given number. The function returns the result of the exponential function or null if the input is null.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Number.Exp( number as nullable number ) as nullable number
Description
Returns the result of raising e to the power of number
(exponential function).
number
: Anumber
for which the exponential function is to be calculated. Ifnumber
is null,Number.Exp
returns null.
Examples
Raise e to the power of 3.
// Output: 20.085536923187668
Number.Exp( 3 )
Related functions
Other functions related to Number.Exp are:
- Number.Abs
- Number.Combinations
- Number.Factorial
- Number.IntegerDivide
- Number.Ln
- Number.Log
- Number.Log10
- Number.Mod
- Number.Permutations
- Number.Power
- Number.Sign
- Number.Sqrt
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy