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"?
Hello @Dennisbur,
@txnelson has provided a solution on this topic in this post : Solved: How do I unlock a column? - JMP User CommunityI hope this will help you,
Quickly, right click on column you want to unlock, select Column Info>uncheck the Lock box.
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