cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles