Can I use a concatenated string as an argument to a function?
Consider this simple example:dt2 = current data table();b = 140;bc = char(b);print(b);print(bc);dt2 << New Column("range"||bc||"v1",Numeric,Formula(b));// dt2 = current data table();dt2 << New Column("Range",Numeric,Formula(Maximum(:Name("AA"||bc), :Name("BB"||bc), :Name("CC"||bc)) - Minimum(:Name("AA"||bc), :Name("BB"||bc), :Name("CC"||bc))));This is the table:Error msg returned:I do very little ...