POWER

POWER

Synopsis

POWER(x,y)

Description

POWER returns the value of x raised to the power y.

  • If both x and y equal 0, POWER returns #NUM! error.
  • If x = 0 and y < 0, POWER returns #DIV/0! error.
  • If x < 0 and y is non-integer, POWER returns #NUM! error.
  • This function is Excel compatible.

Examples

POWER(2,7) equals 128.

POWER(3,3.141) equals 31.523749.

See also

EXP.