cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

How do I Script to Change Selected Column Names

ShahirahLoqman
Level II

Hi, is there a script for me to select the last 10 columns in my table (the ones after "Transition?") and add ".Cv" at the end of the original column name?

Column.PNG

 

I tried writing my script but it did not work:

 

dt = Current Data Table();

 

ColList = dt << get column names( string );

 

For( i = 11, i <= N Items( ColList ), i++, // set which column that look sat grade spec limits

 

NewName << ColList[i] || ".Cv";

Column( dt, ColList[i] ) << Set Name(NewName);

 

);

 

Thanks!

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User


Re: How do I Script to Change Selected Column Names

Here is a simplified version of your code that will add ".Cv" to the end of the specified columns

dt = Current Data Table();
 
For( i = 11, i <= N Cols( dt ), i++, 
 
	Column( dt, i ) << Set Name( (Column( dt, i ) << Get Name) || ".Cv" );
 
);
Jim

View solution in original post

3 REPLIES 3
txnelson
Super User


Re: How do I Script to Change Selected Column Names

Here is a simplified version of your code that will add ".Cv" to the end of the specified columns

dt = Current Data Table();
 
For( i = 11, i <= N Cols( dt ), i++, 
 
	Column( dt, i ) << Set Name( (Column( dt, i ) << Get Name) || ".Cv" );
 
);
Jim
ShahirahLoqman
Level II


Re: How do I Script to Change Selected Column Names

It works! Thank you so much !
wrubi
Level I


Re: How do I Script to Change Selected Column Names

somehow old but still good ... thank you