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

JMP16 : Column properties Spec Limits

It appears once you have inserted spec limits into column properties JMP16 will not remove the spec limit column properties using the built in interface (Column info -> Column Properties -> Spec limits <Remove button>)

The only way I can remove the spec limits is by scripting it...  E.g., :Test << Delete Property( "Spec Limits" );

 

I have a bunch of Columns where I would normally select them all and using:  standardize attributes -> delete column properties -> spec limits would work.  But it no longer does.  Is there any way to delete spec limits without scripting?

 

1 ACCEPTED SOLUTION

Accepted Solutions
justvince
Level III

Re: JMP16 : Column properties Spec Limits

I downloaded and installed the JMP16.1 updater... It now works!! 

I can now add/remove spec limits via the user interfaces.

View solution in original post

8 REPLIES 8
jthi
Super User

Re: JMP16 : Column properties Spec Limits

I'm using JMP Pro 16.1.0. With Semiconductor Capability dataset removing seems to work just fine.

 

Start:

jthi_0-1635880792567.png

NPN1 after removing specification limit but not yet pressed Apply:

jthi_1-1635880824081.png

 

After Apply:

jthi_2-1635880831226.png

Using Standardize attributes for PNP1, PNP2, NPN2, NPN3:

jthi_3-1635880876822.png

After pressing Apply:

jthi_4-1635880887172.png

 

These seem to work fine in the JMP version I'm using.

 

-Jarmo

Re: JMP16 : Column properties Spec Limits

I also confirmed that the Standardize Attributes command still works with JMP 16.1. What steps were you using?

justvince
Level III

Re: JMP16 : Column properties Spec Limits

I can right click on the column name to bring up the properties. 

justvince_0-1635883821071.png

Click on Remove and nothing happens (or click on apply after clicking remove - nothing).

Or bring up standardize attributes 

justvince_1-1635883877563.png

Click on remove and nothing again happens.

justvince_2-1635883904406.png

Spec limits have not been removed.... 

 

The only way it seems to work for me is scripting...

E.g., 

dt=current data table();
Ncols= ncols();
for (i=1, i<=Ncols, i++,
  colx = column(i);
  colx << delete property ("spec limits");
);

 

justvince
Level III

Re: JMP16 : Column properties Spec Limits

Here is my version.  Maybe 16.0.0 bug??

 

 

justvince_3-1635884116962.png

 

jthi
Super User

Re: JMP16 : Column properties Spec Limits

When you remove specification limit from only one column you must press the Remove button to remove the attribute and then Apply (or directly OK).

With Standardize attributes you will just choose attributes to remove (do not press Remove, it will remove the attribute you want to remove from the removal list) and then press Apply (or directly OK).

Could also be related to your JMP version, but I don't have access to JMP16.0 to test it out.

-Jarmo
justvince
Level III

Re: JMP16 : Column properties Spec Limits

Yep, that does not work for me.  I am going to probably say it is the version I am running.

 


 

jthi
Super User

Re: JMP16 : Column properties Spec Limits

I would suggest contacting JMP support support@jmp.com unless you can update to 16.1 and test that.

-Jarmo
justvince
Level III

Re: JMP16 : Column properties Spec Limits

I downloaded and installed the JMP16.1 updater... It now works!! 

I can now add/remove spec limits via the user interfaces.