0
Convert Excel formula to Javascript
New Here
,
/t5/acrobat-sdk-discussions/convert-excel-formula-to-javascript/td-p/10530138
May 09, 2019
May 09, 2019
Copy link to clipboard
Copied
Hello,
I would like convert this formulas to work in Javascript.
=(D6*(12/1+(E4-1)*(12/1+1)/2)*(1+(E4^(D10*1)-E4)/(E4-1))+D4*(E4^(D10*1)))*1
D6 = 200000
D10 =1000
E4 = 1,07
result in excel = 1099444,405
please help
TOPICS
Acrobat SDK and JavaScript
,
Windows
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/convert-excel-formula-to-javascript/m-p/10530139#M12726
May 09, 2019
May 09, 2019
Copy link to clipboard
Copied
This is just a simple mathematical formula. You just need to get the values of the fields corresponding to the cells from the Excel file, and then perform the calculation and apply it to event.value at the end.
The only difference is in how you would do the exponent function. In JavaScript you do it like this:
Math.pow(a,b)
which is the same as
a^b
The rest is exactly the same.
Also, see this tutorial: https://acrobatusers.com/tutorials/how-to-do-not-so-simple-form-calculations
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

