Description
Use this function to return the result of a number raised to a power. Supported in Chains.
This function is an alternative to the exponent operator (^).
Syntax
POWER(number, power)
Inputs
This function has the following arguments:
| Name | Required | Description | Valid input |
|---|---|---|---|
number |
Yes | The number to be multiplied. | A cell reference, a number, or a formula which results in either of these. |
power |
Yes | The value of the power to be applied to the number. | A cell reference, a number, or a formula which results in either of these. |
Examples
Sample data
Sample data
| A | B | |
|---|---|---|
| 1 | 4 | 2 |
| 2 | 9 | 4 |
| 3 | 5 | 2.5 |
Sample formulas
| Use case | Formula | Explanation and Result |
|---|---|---|
| Raise a number to a specified power. | =POWER(4, B1) |
This formula works in the following manner:
For this data set, the formula returns 16. |
| Raise a number in a cell to a power in another cell. | =POWER(A2, B2) |
This formula works in the following manner:
For this data set, the formula returns 6561. |
| Raise a number to a power that is a sum of other values. | =POWER(A3, B2+B3) |
This formula works in the following manner:
For this data set, the formula returns 34938.5621484342. |
| Raise a number to a fractional power. | =POWER(A3, 5/4) |
This formula works in the following manner:
For this data set, the formula returns 7.476743906106103. |
Notes
- Wildcards don't work with this function.