EXP

Updated on

EXP is a DAX function that returns the value of e raised to the power of a given number.

Syntax

EXP( Number )
Argument Properties Description
Number The exponent that is applied to the base e. The constant e equals 2.71828182845904, the base of the natural logarithm.

Return Values

A decimal number.

Exceptions

Remarks

  • EXP is the inverse of LN, which is the natural logarithm of the given number.

  • To calculate powers of bases other than e, use the exponentiation operator (^). For more information, see DAX Operator Reference.

Example

The following formula calculates e raised to the power of the number contained in the column, [Power].

= EXP([Power])

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/exp-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy