koala
koala copied to clipboard
Percentage token has .tvalue as float
strwas expected- e.g.
=IF(RANGE>75%; 1; 0)fails since75%is translated to0.75 - while
=IF(RANGE>.75; 1; 0)would translate to'0.75'
This really requires tests... Also if the code was rebased/merged with master, the CI tests should now pass.
I'll gladly write a test. So create tests/files/IfPercent.xlsx and add the test to tests/excel/test_excel.py?