joshbtn / excelFormulaUtilitiesJS

This library contains methods to beautify an excel formula. This library also contains functions to convert an excel formula to JavaScript (ECMAScript) or C# and python.
http://excelformulabeautifier.com/
Other
394 stars 101 forks source link

Powers not formatted correctly in Python converter #90

Open charles-lan opened 3 years ago

charles-lan commented 3 years ago

Python converted uses carats for powers, when they should convert to "**"

Input: =A1^2 Output (python): A1^2 Expected: A1**2