POWER

POWER the value of x raised to the power y raised to the power of 1/z

Synopsis

POWER(x,y,z)

Arguments

x: number

y: number

z: number

Note

If both x and y equal 0, POWER returns #NUM! If x = 0 and y < 0, POWER returns #DIV/0! If x < 0 and y is not an integer, POWER returns #NUM! z defaults to 1 If z is not a positive integer, POWER returns #NUM! If x < 0, y is odd, and z is even, POWER returns #NUM!

See also

EXP.