cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Have your say in shaping JMP's future by participating in the new JMP Wish List Prioritization Survey
Choose Language Hide Translation Bar
hogi
Level XI

stop all evaluations?

Is there a keyboard shortcut to stop all running Column Formula Evaluations?

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: stop all evaluations?

To turn off formula evaluation for all formulas, click the red triangle next to the data table name and select Suppress Formula Eval. To re-evaluate formulas, click the red triangle next to the data table name and select Rerun Formulas. You can also click the Apply button in the Formula Editor for each column that contains a pending formula.

txnelson_2-1659536908762.png

 

Jim

View solution in original post

3 REPLIES 3
txnelson
Super User

Re: stop all evaluations?

To turn off formula evaluation for all formulas, click the red triangle next to the data table name and select Suppress Formula Eval. To re-evaluate formulas, click the red triangle next to the data table name and select Rerun Formulas. You can also click the Apply button in the Formula Editor for each column that contains a pending formula.

txnelson_2-1659536908762.png

 

Jim
hogi
Level XI

Re: stop all evaluations?

The application case:
an erroneous column formula which prevents me from doing anything in JMP till the evaluation is stopped:

dt = new table("test");
new column("infinite loop", Formula(for(i=1,i>0,i++, print(i))));
hogi
Level XI

Re: stop all evaluations?

triggered by Turn off "Suppress Eval" on all columns ... 

hogi_0-1718435500408.png

 maybe could help - it's universal enough that one just has to find a way to call it despite the non-responding JMP.

 

here it works:

dt = new table("test");
new column("test", Formula(for(i=1,i>0,i++, print(i))));
Suppress Formula Eval(1) 

 

... but I tried to generate a command in the main menu and assigned a Keyboard shortcut.

Here, JMP is already too busy to react on my input : (
Any idea?