cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

Can I copy the embedded scripts from one table to another?

If I have a parent table with many scripts embedded.  Can I copy those easily to a summary table or transposed table automatically using JSL?

 


Slán



SpannerHead
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Can I copy the embedded scripts from one table to another?

Yes 

Names Default To Here(1); 

dt1 = open("$SAMPLE_DATA/Big Class.jmp");
dt2 = open("$SAMPLE_DATA/Big Class Families.jmp");
dt2 << Delete Scripts(dt2 << Get Table Script Names);

For Each({sname}, dt1 << Get Table Script Names,
	s = dt1 << Get Script(sname);

	Eval(EvalExpr(dt2 << New Script(sname,
		Expr(NameExpr(s))
	)));	
);

Write();
-Jarmo

View solution in original post

4 REPLIES 4
jthi
Super User

Re: Can I copy the embedded scripts from one table to another?

Yes 

Names Default To Here(1); 

dt1 = open("$SAMPLE_DATA/Big Class.jmp");
dt2 = open("$SAMPLE_DATA/Big Class Families.jmp");
dt2 << Delete Scripts(dt2 << Get Table Script Names);

For Each({sname}, dt1 << Get Table Script Names,
	s = dt1 << Get Script(sname);

	Eval(EvalExpr(dt2 << New Script(sname,
		Expr(NameExpr(s))
	)));	
);

Write();
-Jarmo
SpannerHead
Level VI

Re: Can I copy the embedded scripts from one table to another?

Jarmo

 

Brilliant!  You should see the script this replaced!


Slán



SpannerHead
txnelson
Super User

Re: Can I copy the embedded scripts from one table to another?

This has been a repeated topic in the Discussion Group.  A simple search would have provided the answer to you faster and more efficiently that opening a new discussion and waiting for someone to respond.

Jim
SpannerHead
Level VI

Re: Can I copy the embedded scripts from one table to another?

Jim

 

I apologise profusely, it won't happen again!


Slán



SpannerHead

Recommended Articles