POWER

The POWER function returns the result of a number raised to a power.

Syntax

pow(value,power)

Arguments

value – The base number, it can be a number or node. This is a required argument.

power – The exponent to which the value is raised. This is a required argument.

Example

pow(COLUMN1, 2)

Returns the value of COLUMN1 raised to the power of 2

Excel equivalent

POWER

Last updated