Kowkase
]]>a (quantity_field_id_0)
b (quantity_field_id_1)
c (quantity_field_id_2)
a*((b/100)*(1+(b/100)^c)) / ((1+(b/100)^c) -1)
I think I can use POW correctly.
quantity_field_id_0 *(( quantity_field_id_2 /100)*POW(1+( quantity_field_id_2 /100), quantity_field_id_1 )/(POW(1+( quantity_field_id_2 /100), quantity_field_id_1 )-1)
]]>How do I input this in the calculated form:
12×2^((7?1)÷5), the result is supposed to be 27.5687605199288
but I am getting 45.316200542155286 when using POW(12*2,((7-1)/5))
Thanks
JL