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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

Making exact clone of a column

HI JMP users,

 

am looking for your help to make identical clone of a column through JMP scipt.

I don't want to select the "Date" column to make a identical column instead script should be able to recognize "Date" column and make a clone column.

 

chandankishor66_1-1664552002693.png

Regards

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Making exact clone of a column

This should create a new column with a different name. Modify this example as necessary for your purpose.

 

Names Default to Here( 1 );

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

expr = :weight << Get Script;

Eval(
	Parse(
		Substitute(
			"dt << " || Char( Name Expr( expr ) ),
			"weight",
			"weight 2"
		)
	)
);

View solution in original post

2 REPLIES 2
jthi
Super User

Re: Making exact clone of a column

By "exact" clone do you mean to copy all formatting, column properties and values?

-Jarmo

Re: Making exact clone of a column

This should create a new column with a different name. Modify this example as necessary for your purpose.

 

Names Default to Here( 1 );

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

expr = :weight << Get Script;

Eval(
	Parse(
		Substitute(
			"dt << " || Char( Name Expr( expr ) ),
			"weight",
			"weight 2"
		)
	)
);

Recommended Articles