Call
Use this function to temporarily suspend one calculation and execute another calculation file. A CALL statement must begin with CALL.
Syntax
Parameter |
Description |
File |
Enter the name of the calculation file you want the system to execute. |
The calculation file that is called must contain a RETURN statement if the original calculation expects a returned value.
Example
Here is an example:
CALL( 'TestCalc' )
This tells the system to call the calculation file TestCalc. After the calculations in TestCalc are completed, processing returns to the current script. In this example, TestCalc is not expected to return a value.