POWER

POWER(mantissa, exponent)[source]

Raises a number to the power of another number.

Computes the result of raising the mantissa to the specified exponent. Inputs can be fields, parameters, calculations, or numeric constants.

Parameters:
  • mantissa (Operand | int | float) – The base number to raise to a power.

  • exponent (Operand | int | float) – The exponent to which the mantissa is raised.

Return type:

Formula

Returns:

The result of the exponentiation.

``mantissa`` — accepted types

  • DECIMAL

  • DECIMAL_ARRAY

  • INTEGER

  • INTEGER_ARRAY

``exponent`` — accepted types

  • DECIMAL

  • DECIMAL_ARRAY

  • INTEGER

  • INTEGER_ARRAY

Return types

  • DECIMAL

  • DECIMAL_ARRAY

  • INTEGER

  • INTEGER_ARRAY