cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

stop all evaluations?

hogi
Level XII

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 XII


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 XII


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?