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

Conditional formatting in JMP 17

Hi,

 

I updated the Cpk color codes at conditional formatting in Preferences > Reports > Conditional format rule > Capability Index. After the change is made, I clicked Apply and Okay to close the window. However, the color codes will return to default after I restart JMP 17. I had to update the conditional formatting again. How do I save this for good in JMP 17? I don't have this issue in JMP 16. 

 

Dennis

1 REPLY 1

Re: Conditional formatting in JMP 17

I think this is not intended behavior. I have reported this. Thanks for your report.
Meanwhile, you can change conditional formatting rule with JSL.

Preferences(
	Conditional Formatting Rules(
		RuleSet(
			RuleName( "Capability Index" ),
			LessThan(
				Value( 1 ),
				Inclusive( 0 ),
				Format( Back Color( "Red" ), TextAlpha( 1 ) )
			),
			Range(
				MinValue( 1 ),
				MaxValue( 1.33 ),
				InclusiveStart( 1 ),
				InclusiveEnd( 1 ),
				EndBackColor( "Yellow" ),
				Format( Back Color( "Yellow" ) )
			),
			GreaterThan(
				Value( 1.33 ),
				Inclusive( 0 ),
				Format( Back Color( "Green" ), TextAlpha( 1 ) )
			)
		)
	)
);