Earlier quoted context omitted.
Ok, besides python support... The thing I'd like more than anything: A better way to edit cell with really long function calls. If nothing else, add color coded parenthesis to the bar at the top and not just in the cell. Like, sometimes you just need some if/else statements... but try to parse and edit even something fairly simple like: =IF(AND(LongExpression > 3, Other_longexpression 5,Other_longexpression Even with…
Do you know about the LET function? It lets you make lexically scoped variables. And the IFS function is basically an if-elif(-elif...)-else chain, eliminating nested IF. So your example would be: =LET( foo, LongExpression, bar, OtherLongExpression, baz, AnotherLongExpression, bax, YetAnotherLongExpression IFS( AND(foo > 3, bar 5, bar The formula bar can be resized and you can insert new lines with alt-enter. Sadly t…
LET alone will be very helpful for all the empirical fluid mechanics formulas I have to deal with.
Thanks a lot friend!
Also, just out of curiosity, why do you recommend that particular bracket style?