cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

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

Exporting a Table with Spec Limits to Excel

I have a JMP data table with embedded Spec Limits and Notes.  Anyone ever export something like that to Excel and retain the Column Properties somehow?


Slán



SpannerHead
1 ACCEPTED SOLUTION

Accepted Solutions
shampton82
Level VII

Re: Exporting a Table with Spec Limits to Excel

Hey @SpannerHead ,

You can't directly export the spec limits but you could make a table with JSL and then save that table as an excel table.  If you want to do it without JSL you can use the Manage Limits platform to save out the spec limits to a JMP table and then save that to excel.

 

Steve

View solution in original post

2 REPLIES 2
shampton82
Level VII

Re: Exporting a Table with Spec Limits to Excel

Hey @SpannerHead ,

You can't directly export the spec limits but you could make a table with JSL and then save that table as an excel table.  If you want to do it without JSL you can use the Manage Limits platform to save out the spec limits to a JMP table and then save that to excel.

 

Steve

SpannerHead
Level VI

Re: Exporting a Table with Spec Limits to Excel

To grab the notes, I used this.  I can export this separately to Excel.

 

dt = Current Data Table();

rej = dt << Get Column Group( "REJ");

notes_list = {};

For( i = 1, i <= N Items( rej ), i++,
	prop = rej[i] << Get Property( "Notes" );
		insert into(notes_list, prop);

);

dt = New Table( "Notes Data" );
dt << New Column( "Parameter", Character, Values( rej ) );
dt << New Column( "Notes", Character, Values( notes_list ) );

Slán



SpannerHead

Recommended Articles