Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Nested POW functions

dsouthh
7 - Meteor

Is there no way to nest a POW function within another POW function? For example, I am getting the error "Wrong number of parameters for the function 'POW'" with the following code:

 

1/POW(POW([Field1]/[Row-1:Field1],4)+.004),0.25)
1 REPLY 1
JohnJPS
15 - Aurora

I think it just has an extra closing parenthesis... try:

1/POW(POW([Field1]/[Row-1:Field1],4)+.004,0.25)
Labels