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
-We would like to add more functions, like Excel functions, Google Sheets functions, and more
40
+
-Support of functions are so limited at the moment, but we would like to add more of them, like Excel functions, Google Sheets functions, and so on
38
41
- At the moment, we don't support table data, so you need to pass values to the formula as arguments by yourself
39
-
- We do not support simple formulas like `1+1` or as argument like `AND(1>3, 1<3)` or `SUM(2-1, 2)`, yet
42
+
- We do not support simple formulas like `1+1` or as argument like `AND(1>3, 1<3)` or `SUM(2-1, 2)`. Instead, you can use our `F.` functions like `AND(F.GT(1, 3), F.LT(1, 3))` or `SUM(F.SUB(2, 1), 2)`
43
+
- We still do not support parentheses to change the order of operations, but you can use our `F.` functions. So for example instead of `2*(1+1)`, you should use `F.MUL(2, F.ADD(1, 1))`
40
44
41
45
### Contributing
42
46
@@ -45,3 +49,5 @@ We would love to have your contribution! Please read our [contributing guideline
45
49
### License
46
50
47
51
This project is licensed under the MIT license. See the [LICENSE](LICENSE.md) file for more info.
0 commit comments