GroupColumns raising exception in v18
Dear Community, Since I moved to v18, a function call that previously worked fine, now raises an exception (in Debug mode only, otherwise, just skipped silently):This worked in v17:colList = dt2 << Get Column Names( String );
dt2 << GroupColumns( colList[1] :: :Time At Exit );
Raises this exception in v18
FYI, this explicit workaround works:dt2 << GroupColumns( :Time At Entrance Queue :: :Time At Ex
...