I have a data table column box that I want to individually color specific cells of once it is appended to a table. Coloring the cells before I add it to the table, removes the color once it is appended. I have also tried background color function and cant get that to work either. thanks!
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("test",
OutputHLB = H List Box( dt << Get as Report() )
);
dt2 = Open( "$Sample_Data/Cities.jmp" );
OutputHLB[Table Box(1)] << Append (Data Table Col Box(dt2:POP));
OutputHLB[Table Box( 1 )][6][1] << Color Cells ( "Red" );