Hi all,
I’ve become a fan of the new Expression nodes and the KNIME Expression Language.
That said two features that I miss and I think could add a lot of value in terms of making complex Expressions more readible are:
- Ability to mark “helper-columns” for exclusion from the output table:
- e.g. I create interim columns that are solely required for a final calculation in a downstream column - the helper columns that enable the “final” Expression are not needed and I typically filter them out using Column Filter, Table Manipulator etc. A checkbox for each expression that allows to exclude it when a box is unchecked may be a nice quality of life improvement
- Ability to define a variable (not flow variable) inside an expression:
- E.g. in Column Expression (legacy), based on it’s Java Script backend, one could define a variable / multiple variables:
var date = date(“2025-10-25”)- And this could then be used downstream in expressions
- Would love to see this implemented again in Expression Language