How to automatically extract the column name used by the formula in the JSL code?
How to use JSL to automatically extract from a JSL formula the column names used by the formula, and group them into a combination.
For example, in the image of 1, automatically extract the column name to get a combination of 2.Thanks!dt = Current Data Table();
dt << New Column( "text", formula( :K36 >= 71.93 & :XA >= -32.3 & :a1 >= -43.67 & :A56 < 18.9 ) );
dt << run formulas;
Column( "text" ) << ...
vince_faller