<< Click to Display Table of Contents >> POWER (power) |
Syntax:
POWER(x, y)
Description:
This returns x raised to the power of y.
x is the base.
y is the exponent.
Additional info:
The ^ operator does exactly the same:
POWER(x, y) is equivalent to x^y.
Example:
POWER(2, 4) is equivalent to 2^4, which is 16
See also:
LOG, LN, EXP, SERIESSUM, SQRT, ROOTN, section Operators in formulas