excelFormulaUtilitiesJS
excelFormulaUtilitiesJS copied to clipboard
^-operator to javascript not translated
When converting the formula '=A1^2' to javascript, it gives 'A1^2' as the result, but ^ in javascript is the bitwise XOR operator. It should be 'Math.pow(A1, 2)'
Thanks for the feedback! This is related to a very old issue I haven't been able to crack yet. https://github.com/joshbtn/excelFormulaUtilitiesJS/issues/19