Hi,
How can I remove a formula from a column without changing it through JSL?
Thanks.
Go to Solution
Below is another option:
dt = Open( "$SAMPLE_DATA/Bank Loan.jmp" );:Time << Delete Formula;
dt = Open( "$SAMPLE_DATA/Bank Loan.jmp" );
:Time << Delete Formula;
View solution in original post
Try the Delete Property() message to the column.
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );:Pred Formula ABRASION << delete property(Formula);
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );
:Pred Formula ABRASION << delete property(Formula);
-Jeff
This is perfect for column names that have special characters in them, thanks!!
Or by using the :Name() function form
:Name("Values From Formula") << deleteFormula;