Column name as expression inside loop doesn't work
Hello Community,
I am trying to automatize the generation of some graphs making a loop over some columns of my graph.
For example, my Column's names are: H_1 , H_2 ... H_12
I tried
x1_ = Expr( Y( Expr( ":H_" || Char( iAus ) ) ) );
I also tried
x1_ = Expr( Y( Column( Expr( "H_" || Char( iAus ) ) ) );
and also:
x1_ = Expr( Y( As Column( Expr( "H_" || Char( iAus ) ) ) );
and inside the iAus...