Forums
Home / Plugin: Calculated Fields Form / Antilog
(@ujalarehan3)
4 years, 2 months ago
How to calculate antilog?
(@codepeople)
Hello @ujalarehan3
Antilog is another name for exponentiation. If you want to calculate x^y, you should use the POW operation as follows: POW(x,y)
So, assuming that x is the fieldname1 field, and y the fieldname2 field, the equation would be:
POW(fieldname1, fieldname2)
Best regards.
Thanks for your fast reply but i have more question like if i use pow function for Antilog then what is the purpose logab function?
The LOG(X) operation calculates the logarithm of X base e, the LOGAB(X,Y) operation calculates the logarithm of X base Y
Ok thanks alot??