• Resolved gabekahsen

    (@gabekahsen)


    I’m trying to do a formula (A*0.001)^0.73 and if the value (A) is under 1000 it does not calculate. I created a new block just to do 0.9^0.9 and it doesn’t calculate the exponent of anything under the value of 1. Am I missing something? How can I complete my equation? Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @gabekahsen

    In javascript does not exist the ^ operator, for this reason our plugin includes the POW operation. A^B = POW(A,B)

    So, your equations would be POW(A*0.001, 0.73) and POW(0.9, 0.9)

    Best regards.

Viewing 1 replies (of 1 total)

The topic ‘Problem with Fractious Exponents’ is closed to new replies.