DAX Math & Trigonometric - EXP function



Description

Returns e raised to the power of a given number.

The constant e equals 2.71828182845904, the base of the natural logarithm.

Syntax

EXP (<number>) 

Parameters

Sr.No. Parameter & Description
1

number

The exponent applied to the base e.

Return Value

A decimal number.

Remarks

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

To calculate the powers of bases other than e, use the DAX exponentiation operator (^).

Example

= EXP (2.0) returns 7.38905609893065. 
= EXP (2.5) returns 12.1824939607035.
dax_functions_mathematical_trigonometric.htm
Advertisements