cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

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

Columns locked

Hello

Some of the columns are locked, 

If I have any option to convert the columns to open one without doing once again a summary and removing the "link to the original data table"?

Dennisbur_0-1676365991438.png

 

3 REPLIES 3
Victor_G
Super User

Re: Columns locked

Hello @Dennisbur,

 

@txnelson has provided a solution on this topic in this post : Solved: How do I unlock a column? - JMP User Community
I hope this will help you,

Victor GUILLER

"It is not unusual for a well-designed experiment to analyze itself" (Box, Hunter and Hunter)
statman
Super User

Re: Columns locked

Quickly, right click on column you want to unlock, select Column Info>uncheck the Lock box.

Screen Shot 2023-02-14 at 7.50.00 AM.jpg

"All models are wrong, some are useful" G.E.P. Box

Re: Columns locked

If you are using JSL, you can use the code below to unlock a table and all columns in it:

			dt << Lock Data Table( 0 );

			For( j = 1, j <= N Col( dt ), j++,
				Try( Column( dt, j ) << lock( 0 ) )
			);			

Cheers,

Brady

Recommended Articles