Is there a keyboard shortcut to stop all running Column Formula 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.
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.
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))));
triggered by Turn off "Suppress Eval" on all columns ...
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?