cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
ErraticAttack
Level VI

JMP Report Table Cell Coloring

Does anyone know if there is an option in JMP Pro 17.2 to make the report from a data table highlight the same way as was done in JMP14?

 

Here is an image that shows JMP14 on the left, and JMP17 on the right -- selecting rows in the table on JMP17 obscures any cell coloring that the report had.

 

desired behavior from JMP14 (left) and incorrect behavior from JMP17 (right):

ErraticAttack_0-1709693638843.png

 

Here's the script I used:

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt:NAME << Color Cells( "Orange", 3 );
jmp_report = New Window( "Big Class",
	<<show menu( 0 ),
	<<show toolbar( 0 ),
	Text Box( "Big Class" ),
	H List Box(
		Outline Box( "Big Class", dt << Get As Report ),
		Outline Box( "Big Class", dt << Get As Report )
	), 

);

I hope I'm missing something, but I fear that it's just how JMP operates now.

Jordan
4 REPLIES 4
txnelson
Super User

Re: JMP Report Table Cell Coloring

I have replicated your findings in JMP 14 and JMP `17.   JMP 18 has the same result as JMP 17. 

Jim
ErraticAttack
Level VI

Re: JMP Report Table Cell Coloring

Thanks for checking on JMP18 -- I was wondering about it.  I need to see if I can request this feature in the next dot version of JMP18

Jordan
thiennguyen
Level III

Re: JMP Report Table Cell Coloring

I don't think it's a big problem. When I use JMP 17.2 and highlight a cell in my dataset, the color doesn't change according to my selection.

 

thiennguyen_0-1709715271867.png

 

 

 
 
ErraticAttack
Level VI

Re: JMP Report Table Cell Coloring

You're using a data table box -- not a data table report.

Jordan