Skip to main content

Pow (Power)

An expression editor function that raises a number to a specified power.

Updated yesterday

Overview

This function returns the value of a decimal raised to a given power.

Note: the decimal and power can both be any integer or decimal value.


Parameters

pow(number1, number2)

Number 1

The base number.

Number 2

The exponent (power).


For example...

pow(2, 3)

Returns 8 (2 raised to the power of 3).

Did this answer your question?