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
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