Forming a Column Formula from an Associative Array
I looked but couldn't find a clear example. I have a script that creates an associative array between pairs of columns in a table. I now want to leverage that array to create a formula referencing both the value and the key. How is this done?
For( i = 1, i <= N Items( SpecCols ), i++,
key = Column( dt, SpecCols[i] );
value = Column( dt, Char(SpecCols[i])||" Pass/Fail");
assocArra
...