- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Sserializing column groups
Hi @txnelson ,
want to assign numbers only to a particular group of columns.
For eg: In this case, I want to serialize the column group "Tests". There are more than 100 columns in the tests groups. Please can you help me with the jsl?
Many thanks,
Jack
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Sserializing column groups
Created:
Aug 24, 2021 11:43 AM
| Last Modified: Aug 24, 2021 8:44 AM
(793 views)
| Posted in reply to message from Jackie_ 08-24-2021
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 ) )
);
Jim
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Sserializing column groups
Created:
Aug 24, 2021 11:43 AM
| Last Modified: Aug 24, 2021 8:44 AM
(794 views)
| Posted in reply to message from Jackie_ 08-24-2021
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 ) )
);
Jim