error in set col value with JSL formula
Open( "$SAMPLE_DATA/Big Class.jmp" );
dt=(Data Table( "Big Class" ) << Tabulate(
Add Table(
Column Table( Grouping Columns( :sex ) ),
Row Table( Analysis Columns( :height ), Statistics( Mean ) )
)
)) << Make Into Data Table;
dt<<New Column ("total", numeric, continious);
:total<<formula(:F+:M);// this line works by itself but causes error in script
:total<<formula(:F+:M);// this line works b
...