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