- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to select a group and delete the columns via JSL ?
Hi,
I am looking for a way in JSL to select an existing group of columns and then delete the columns in this group.
Sorry for asking but I am still a beginner in scripting.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to select a group and delete the columns via JSL ?
There are many ways to do this.
- Use << Get Column Group(<groupname>) to get list of the columns in the group
- Use << Delete Columns() with the list to remove columns from data table
Scripting index should be able to provide quite good examples for both of the functions
-Jarmo
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to select a group and delete the columns via JSL ?
There are many ways to do this.
- Use << Get Column Group(<groupname>) to get list of the columns in the group
- Use << Delete Columns() with the list to remove columns from data table
Scripting index should be able to provide quite good examples for both of the functions
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to select a group and delete the columns via JSL ?
Thanks @jthi for your quick reply