cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
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

Recommended Articles