cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

Extract Expr: Issue with scoped variable

This works:

 

Extract Expr(:height << set name( "new" ), :height );

 

 

But this one doesn't *):

Extract Expr(myDataTable:height << set name( "new" ), myDataTable:height );

Fortunately there is this dirty trick of Extract Expr (it automatically resolves every defined variable **) - which allows this workaround:

x = Expr( myDataTable:height);
Extract Expr(myDataTable:height << set name( "new" ), x )

 

*) why?

maybe related to (**)?

0 REPLIES 0

Recommended Articles