• Resolved danawilson171

    (@danawilson171)


    I’m struggling trying to get exponents to work in an equation. I’ve searched and can’t seem to find any reference.

    There’s the equation I’m trying to replicate:

    A * L ^(c*y)

    Where field13=A, field2=L, field6=c and field10=y

    Here’s the Set Equation. I’m sure I’m just listing the exponent wrong, but I haven’t been able to figure out or find the right way to list it.

    fieldname13*fieldname2*exp(fieldname6*fieldname10)

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @danawilson171,

    You are referring to the “POW” operation.

    POW(x, y) Returns the value of x to the power of y

    So, your equation would be:

    
    fieldname13*POW(fieldname2,fieldname6*fieldname10) 
    

    and that’s all.
    Best regards.

    Thread Starter danawilson171

    (@danawilson171)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Using exponents in equations’ is closed to new replies.