-
-
Notifications
You must be signed in to change notification settings - Fork 395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Formula SyntaxError using IF #253
Comments
Sorry for not answering for so long. I could not save the example in the RGF format, since the erroneous formula is simply not preserved. But I tried to save it in the xlsx format, which I then need to open using ReoGridEditor. |
Nice, that tip works for me, separate the comma with spaces, thank you. |
Fixed by #392 |
With a formula using IF, the error "SyntaxError" occurs.
For example, the formula:
IF(A1>0, A2/A1,0)
will be in error.And the formula
IF (A1>0,A2/A1, 0)
will be without error. The difference lies in the presence of a space in front of the zero at the end of the formula for the case of a false condition.The text was updated successfully, but these errors were encountered: