Closed rswheeldon closed 4 years ago
Excel supports IFS formulae in which pairs of (condition, value) are evaluated and the first matching one wins. e.g.
=IFS(1=3,"Not me", 1=2, "Me neither", 1=1, "Yes me")
returns
Yes me
fast-formula-parser throws errors when I try and use these.
Ok. I'll take a look.
Updated: https://github.com/LesterLyu/fast-formula-parser/releases/tag/1.0.17
That works. Many thanks.
Excel supports IFS formulae in which pairs of (condition, value) are evaluated and the first matching one wins. e.g.
returns
fast-formula-parser throws errors when I try and use these.