cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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