This is a simplified version of my script. The difference between FirstResult and FirstResultAltered is that the content of FirstResultAltered is gained by a formula dependent on the column FirstResult. For example, Col("FirstResultAltered")[O]$= Col("FirstResult")^2.
My current problem is that the script finishes before recalculation was done, resulting in the second mathtool operation to put out empty lines filled with "--".
I tried running the script both with run ScriptName.ogs, and run.file(Scriptname.ogs), but in both cases it does the same thing.
So my question is: How do I make the script wait for recalculation to finish before performing a second mathtool operation?
1 L A T E S T R E P L I E S (Newest First)
ScriptQuestions
Posted - 03/02/2022 : 05:21:43 AM Found the solution:
run -p au;
before the second calculation causes the program to wait for recalculation.