Returns the result of a number raised to a given power.
Sample Usage
POWER(2, 5)
POWER(A4, A5)
Syntax
POWER(base, exponent)
- base - The base number.
- exponent - The power to which the base number is to be raised.
Examples
POWER(2, 5) returns a value of 32.
POWER(A4, A5) returns the result of the number A4 raised to the power A5.
Notes
- If base is negative, exponent must be an integer.
- POWER is equivalent to the POW function.