You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(of course, this is just a small example to reproduce buggy behavior - I encountered this problem when importing real data)
Expected behavior
output should be -0.00000001
Workaround
If you know the number to be positive, you can just put - in front of the expression: -{{ROW.X}}. If it is always negative, {{replace ROW.X "-" ""}} helps. If uncertain, {{#if regexpTest ROW.X "-.*"}}{{replace ROW.X "-" ""}}{{else}}-{{ROW.X}}{{/if}} can be used. It is cumbersome though.
Screenshots
Awesome app by the way, the import works very nicely!
The text was updated successfully, but these errors were encountered:
Describe your Environment
OS: Linux (via Docker)
Paisa Version: 0.7.0
App Variant: Desktop (browser)
Describe the bug
When importing, number
negate "0.00000001"
gets converted into-1e-8
, which is then rejected by parser.To Reproduce
Steps to reproduce the behavior:
-1e-8
(of course, this is just a small example to reproduce buggy behavior - I encountered this problem when importing real data)
Expected behavior
-0.00000001
Workaround
If you know the number to be positive, you can just put
-
in front of the expression:-{{ROW.X}}
. If it is always negative,{{replace ROW.X "-" ""}}
helps. If uncertain,{{#if regexpTest ROW.X "-.*"}}{{replace ROW.X "-" ""}}{{else}}-{{ROW.X}}{{/if}}
can be used. It is cumbersome though.Screenshots
Awesome app by the way, the import works very nicely!
The text was updated successfully, but these errors were encountered: