POWER function: Difference between revisions
From Planfix
(Created page with "== Go To == * Standard operators and Planfix functions *Calculated fields *Reports") |
No edit summary |
||
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) | |||
{{Task.Subtasks.Record number}}^2 | |||
== Go To == | == Go To == | ||
*[[Standard functions | Standard operators and Planfix functions]] | *[[Standard functions | Standard operators and Planfix functions]] | ||
*[[Calculated fields]] | *[[Calculated fields]] | ||
*[[Reports]] | *[[Reports]] |
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)
Template:Task.Subtasks.Record number^2