POWER function: Difference between revisions
From Planfix
(Created page with "== Go To == * Standard operators and Planfix functions *Calculated fields *Reports") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
The POWER() function returns the result of raising a number to a power. | |||
''Format:'' | |||
POWER('base';'exponent') | |||
POWER('base';'exponent') | |||
base ^ exponent | |||
''Examples:'' | |||
POWER(2;5) | |||
2^5 | |||
POWER(<nowiki>{{Task.Subtasks.Record number}}</nowiki>);2) | |||
<nowiki>{{Task.Subtasks.Record number}}^2</nowiki> | |||
== Go To == | == Go To == | ||
*[[Standard functions | Standard operators and Planfix functions]] | *[[Standard functions | Standard operators and Planfix functions]] | ||
*[[Calculated fields]] | *[[Calculated fields]] | ||
*[[Reports]] | *[[Reports]] |
Latest revision as of 02:00, 11 February 2021
The POWER() function returns the result of raising a number to a power.
Format:
POWER('base';'exponent')
POWER('base';'exponent')
base ^ exponent
Examples:
POWER(2;5)
2^5
POWER({{Task.Subtasks.Record number}});2)
{{Task.Subtasks.Record number}}^2