One just needs to get the list of columns in the data table group and then change the names.
Names Default To Here( 1 );
dt = Current Data Table();
theGroup = dt << get column group( "Tests" );
For( i = 1, i <= N Items( theGroup ), i++,
theGroup[i] << set name( Char( i ) || ". " || char( theGroup[i] << get name ) )
);
![txnelson_0-1629819846483.png txnelson_0-1629819846483.png](https://community.jmp.com/t5/image/serverpage/image-id/35314iA53121D0D3E12988/image-size/medium?v=v2&px=400)
Jim