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.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

How can I obtain the serial number of the column where the cursor resides using a script?

lala
Level VIII

Let's say I select a cell in column 4
The following code only gets the specific column name, not the serial number of the column :4

dt=Open("$SAMPLE_DATA/Big Class.jmp");

aaa=(dt<<get selected columns)[1];

Thanks!

2025-01-06_15-55-57.png

1 ACCEPTED SOLUTION

Accepted Solutions
lehaofeng
Level V


Re: How can I obtain the serial number of the column where the cursor resides using a script?

Contains( dt << get column names( string ), aaa << get name );

View solution in original post

2 REPLIES 2
lala
Level VIII


Re: How can I obtain the serial number of the column where the cursor resides using a script?

ab=(dt<<get selected rows)[1];

??

lehaofeng
Level V


Re: How can I obtain the serial number of the column where the cursor resides using a script?

Contains( dt << get column names( string ), aaa << get name );