- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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:
NPN1 after removing specification limit but not yet pressed Apply:
After Apply:
Using Standardize attributes for PNP1, PNP2, NPN2, NPN3:
After pressing Apply:
These seem to work fine in the JMP version I'm using.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JMP16 : Column properties Spec Limits
I can right click on the column name to bring up the properties.
Click on Remove and nothing happens (or click on apply after clicking remove - nothing).
Or bring up standardize attributes
Click on remove and nothing again happens.
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");
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JMP16 : Column properties Spec Limits
Here is my version. Maybe 16.0.0 bug??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.