vinci1it2000 / formulas

Excel formulas interpreter in Python.
https://formulas.readthedocs.io/
European Union Public License 1.1
342 stars 75 forks source link

how to show transfered formula? #137

Open DaiJianghai opened 3 months ago

DaiJianghai commented 3 months ago

Thanks for your work, i have a question, for example: i have a formula parsed by builder: IF(A1 < 2, 1, IF(A2 < 3, 1, 0))

now i want to get a new formula : IF(A1 < 2, 1, IF<0>(A2 <<0> 3, 1, 0)) that function with id, how do i achieve that

Thanks!