Automatically plot the associated columns in an Associative Array
With a lot of help from Jarmo, I got an Associative Array (aa) of columns that are linked. Next, I need to plot those, is that easily done
Names Default To Here(1);
startchar1 = "VT";
startchar2 = "ID";
rgx_startchar1 = Eval Insert("^startchar1^(.+?)$");
dt = Current Data Table();
collist = dt << get column names(string);
VT_IDcols = {};
For( i = 1, i <= N Items( collist ), i++,
If( !Cont
...