Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Number.Power(number as nullable number, power as nullable number) as nullable number
About
Returns the result of raising number
to the power of power
. If number
or power
are null, Number.Power returns null.
number
: The base.power
: The exponent.
Example 1
Find the value of 5 raised to the power of 3 (5 cubed).
Usage
Number.Power(5, 3)
Output
125