Conditionally colour text of a Data Table Box
I would like to colour the text of specific cells of a Data Table Box based on a condition. Take as example of what I am trying to do the following: dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Where(:Age > 14);
:Age << Color Cells( "Red" );
the above gives the output:but then the result in the window is: win3 = New Window( "Combined Report",
Data Table Box(dt));
There is not any colour....