cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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