cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

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

Cell value in new column

Hi All,

I would like to get a value e.g. for I=20, from I column and put this value in a new column with a new name. I would be grateful for your help and advice. I am new to JMP and learning.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Cell value in new column

Doing this task interactively, you can:

  1. Click on the Cols pull down menu and select "New Column"
  2. Click on the 20th cell in the I column
  3. Right click and select copy
  4. Now click on the first cell in the new column
  5. Right click and select paste

Using JSL

Names Default To Here( 1 );
dt = Current Data Table();

dt << New Column( "the new column" );
dt:the new column[1] = dt:i[20];
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Cell value in new column

Doing this task interactively, you can:

  1. Click on the Cols pull down menu and select "New Column"
  2. Click on the 20th cell in the I column
  3. Right click and select copy
  4. Now click on the first cell in the new column
  5. Right click and select paste

Using JSL

Names Default To Here( 1 );
dt = Current Data Table();

dt << New Column( "the new column" );
dt:the new column[1] = dt:i[20];
Jim

Recommended Articles