Columns are evaluated?
check the status bar of the window in front - when JMP is finished, it says : evaluations done
in JMP19, such calculations are secret, JMP is saying "evaluations done" - but evaluations are running in the background.
With a little trick, you can actually get JMP to reveal its secret recalculations:
dt = Current Data Table();
cols = dt << get column references();
Eval(
Eval Expr(
New Column( "recalc",
Formula(
If( Row() == 1,
Sum(
Transform Each( {col}, Expr( Name Expr( cols ) ),
Is Missing( col[Row()] )
)
);
Caption( "recalc" );
Wait( 0 );
)
)
)
)
);