POWER(list)

The POWER function calculates the result of a number raised to a power. The first argument place in the list contains the number and any places after this contain the power or powers.

For example:

POWER(2, 3)   returns 8, that is 2^3

POWER(2, 3, 2)   returns 64, that is (2^3)^2

See also:

Other mathematical functions