I have a data table with column names having xy coordinates embedded in them. something like "delay [x,y]"
I'd like to use a list of [x,y] (attached) to construct the column names so I can refer to a specific column in that table.
When I tried to do subtractions referring to the column using dt:name() it errored out "Name arg must be quoted string". Any suggestions?
list=xy<< get column names(String)
col="delay"||Substr(char(list[{1}]), 3,Length( char(list[{1}]))-4);
a=dt:name(char(col))[15]-dt:name(char(col))[25]