Using
```
SUMIF(A1:A10,">0")
```
results in a "Syntax error." exception.
Code ends up in the ParseAtom() method with the _token.Type of TKTYPE.COMPARE, which is unsupported at that moment.
Comments: This only happens if the cell in A1:A10 range is an empty string ValueSatisfiesCriteria tries to evaluate the expression of value > 0, value being empty it builds an unsupported expression and the whole thing fails with Syntax error.
```
SUMIF(A1:A10,">0")
```
results in a "Syntax error." exception.
Code ends up in the ParseAtom() method with the _token.Type of TKTYPE.COMPARE, which is unsupported at that moment.
Comments: This only happens if the cell in A1:A10 range is an empty string ValueSatisfiesCriteria tries to evaluate the expression of value > 0, value being empty it builds an unsupported expression and the whole thing fails with Syntax error.