can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested?
I tried below jsl but it only works when you plot the data in graphs but not in the table itself?
Thanks in advance!
Evan
dt=Data Table( "Bin Wafer Map" );
For(i=4, i<=N col(dt),i++,
dt:i << Set Property(
"Value Colors",
{1=Green,3 = Red, 4 = Yellow,5=orange, 6 = Magenta, 7 =Blue,8 = Cyan,9=BlueCyan}
));