Power
Excel
=A1^B1
=2^3Tableau
[Absence Instances]^[Duration]
// OR
2^3Alteryx
POW([Absence Instances], [Duration])
// OR
POW(2, 3)OrgVue
tSQL
Python
Last updated
Was this helpful?
=A1^B1
=2^3[Absence Instances]^[Duration]
// OR
2^3POW([Absence Instances], [Duration])
// OR
POW(2, 3)Last updated
Was this helpful?
Was this helpful?
Math.pow(node.absenceinstances, node.duration);
// OR
Math.pow(2,3);SELECT AbsenceInstances^Duration AS Bradford
FROM EmployeesData2**3
# OR
import math
math.pow(absenceInstances, duration)