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

Add Column Switcher to Script

Hi JMP Community,

 

I have a problem that cannot be solved for a long time. I want to add a column switcher to my Control Chart Builder. 

 

CC = Control Chart Builder(
   Size( 570, 692 ),
   Variables( Subgroup( :Week of Year ), Y( column(5) ) ),
   Column Switcher( column(5), {Eval(5::10)} )
);

The chart shows successfully, but I cannot see the column switcher. Appreciate any help. Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Add Column Switcher to Script

I think you have to change your Eval(5::10) to something like

(Current Data Table() << Get Column Names)[5::10]
-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: Add Column Switcher to Script

I think you have to change your Eval(5::10) to something like

(Current Data Table() << Get Column Names)[5::10]
-Jarmo

Recommended Articles