cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Mewbornn
Level I

Color a specific cell in a Number Column Box after it has been appended to another Table Box

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" );
1 REPLY 1
jthi
Super User

Re: Color a specific cell in a Number Column Box after it has been appended to another Table Box

You might have to use Col Box to color single cell or maybe conditional formatting. One more option would be to rebuild the table box from data table and color the cells there before using << get as report to the new table.

-Jarmo