cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

Refer to Columns in other Data Table using Formula in Column Names

I have a data table with column names having xy coordinates embedded in them. something like "delay [x,y]"

I'd like to use a list of [x,y] (attached) to construct the column names so I can refer to a specific column in that table.

When I tried to do subtractions referring to the column using dt:name() it errored out "Name arg must be quoted string". Any suggestions?  

 

list=xy<< get column names(String)
col="delay"||Substr(char(list[{1}]), 3,Length( char(list[{1}]))-4);
a=dt:name(char(col))[15]-dt:name(char(col))[25]



 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Refer to Columns in other Data Table using Formula in Column Names

Given the attached data table, the following JSL works.

dt=current data table();
list=dt<< get column names(String);
//col="delay"||Substr(char(list[1]), 3,Length( char(list[1]))-4);
col=list[1];
//a=dt:name(char(col))[15]-dt:name(char(col))[25]
a=column(dt,col)[15]-column(dt,col)[25];
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Refer to Columns in other Data Table using Formula in Column Names

Given the attached data table, the following JSL works.

dt=current data table();
list=dt<< get column names(String);
//col="delay"||Substr(char(list[1]), 3,Length( char(list[1]))-4);
col=list[1];
//a=dt:name(char(col))[15]-dt:name(char(col))[25]
a=column(dt,col)[15]-column(dt,col)[25];
Jim

Recommended Articles