cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

Remove checkbox selection in Column Info window

I can't for the life of me find documentation on how to uncheck a box in the column info window through jsl.

 

I'm trying to set a column data type to "Precision" and I don't want "Keep trailing zeroes" selected. 

 

When I run the code below, "Keep trailing zeroes" is selected by default. 

column<<format("Precision",12,2)

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Remove checkbox selection in Column Info window

https://www.jmp.com/support/help/en/17.2/#page/jmp/column-messages.shtml?os=win&source=application#w...

col<<Format("Precision", <width>, <decimal places>, <"Use Thousands Separator">, <"Keep Trailing Zeroes">, <"Keep All Whole Digits">)

not exactly sure though what the syntax is to disable it... so I tested few options and this seemed to work

Names Default To Here(1); 

dt = open("$SAMPLE_DATA/Big Class.jmp");

Column(dt, "height")<< Format("Precision", Keep trailing zeroes(0), 7, 1);
-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: Remove checkbox selection in Column Info window

https://www.jmp.com/support/help/en/17.2/#page/jmp/column-messages.shtml?os=win&source=application#w...

col<<Format("Precision", <width>, <decimal places>, <"Use Thousands Separator">, <"Keep Trailing Zeroes">, <"Keep All Whole Digits">)

not exactly sure though what the syntax is to disable it... so I tested few options and this seemed to work

Names Default To Here(1); 

dt = open("$SAMPLE_DATA/Big Class.jmp");

Column(dt, "height")<< Format("Precision", Keep trailing zeroes(0), 7, 1);
-Jarmo

Recommended Articles