cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
LogitTurtle576
Level III

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
jthi
Super User

Re: How to select a group and delete the columns via JSL ?

There are many ways to do this.

  1. Use << Get Column Group(<groupname>) to get list of the columns in the group
  2. 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

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How to select a group and delete the columns via JSL ?

There are many ways to do this.

  1. Use << Get Column Group(<groupname>) to get list of the columns in the group
  2. 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
LogitTurtle576
Level III

Re: How to select a group and delete the columns via JSL ?

Thanks @jthi for your quick reply

Recommended Articles