cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Recommended Articles