Number.Power

Returns the outcome of multiplying number by itself power number of times. If either number or power is empty, the function Number.Power will output a null value. "number" refers to the base value, wh...

Syntax

Number.Power(number as nullable number, power as nullable number) as nullable number

About

Returns the outcome of multiplying number by itself power number of times. If either number or power is empty, the function Number.Power will output a null value. "number" refers to the base value, while "power" represents the exponent in the operation.

Explanation

Determine the result of raising 5 to the power of 3 (5 cubed). Utilize the Power function in Power Query M: Number.Power(5, 3). The output value is equal to 125.