aidhound / hotxlfp

A Python Excel Formula Parser similar to the javascript handsontable formulaparser
MIT License
27 stars 12 forks source link

not work XLError('#DIV/0!') #3

Closed SovBur closed 3 years ago

SovBur commented 3 years ago

Hello. The exception ('#DIV/0!') does not work in the following cases: p = hotxlfp.Parser() formula = p.parse("SUM(2/0; 2)") print(formula['error'])

expected to get an error '#DIV/0!' or '#VALUE!', but None.