cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
Choose Language Hide Translation Bar
hogi
Level XII

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