POWER (Primitive Spread Function) Raises the specified number (X) to the given power (Y):XY .
SYNTAX:
POWER(value1,value2)
REMARKS:
Specify the number to raise using the value1 argument. Specify the power to raise it to using the value2 argument.
You can use the ^ operator instead of the POWER function to raise a number to a power, for example, 16^3.
EXAMPLES:
POWER(A3,B4)
POWER(16,3)=4096