Menu Option | Description | Toolbar Icon |
---|---|---|
Details… | Opens the Calculation Editor to allow you to view or edit the calculation details. See Understanding the Calculation Editor for details. | |
Delete… | Opens the Delete dialog for the selected calculations. See Understanding the Delete Dialog Box for details. | |
Inhibit… | Opens the Inhibit dialog for the selected calculation. See Understanding the Inhibit Dialog Box for details. | |
Manual Entry… | Opens the Manual Entry dialog for the selected calculation. See Understanding the Manual Entry Dialog Box for details. | |
Manual Override… | Opens the Manual Override dialog for the selected calculation. See Understanding the Manual Override Dialog Box for details. | |
Cancel Inhibit… | Cancels inhibit for the selected calculation. See Understanding Cancel Inhibit for details. | |
Cancel Manual Entry… | Cancels manual entry for the selected calculation. See Understanding Cancel Manual Entry for details. | |
Cancel Override… | Cancels manual override for the selected calculation. See Understanding Cancel Manual Entry for details. |
Menu Option | Description | Toolbar Icon |
---|---|---|
Details… | Opens the Calculation Editor to allow you to view or edit the calculation details. See Understanding the Calculation Editor for details. | |
Delete… | Opens the Delete dialog for the selected calculations. See Understanding the Delete Dialog Box for details. | |
Inhibit… | Opens the Inhibit dialog for the selected calculation. See Understanding the Inhibit Dialog Box for details. | |
Manual Entry… | Opens the Manual Entry dialog for the selected calculation. See Understanding the Manual Entry Dialog Box for details. | |
Manual Override… | Opens the Manual Override dialog for the selected calculation. See Understanding the Manual Override Dialog Box for details. | |
Cancel Inhibit… | Cancels inhibit for the selected calculation. See Understanding Cancel Inhibit for details. | |
Cancel Manual Entry… | Cancels manual entry for the selected calculation. See Understanding Cancel Manual Entryfor details. | |
Cancel Override… | Cancels manual override for the selected calculation. See Understanding Cancel Manual Override for details. |
Function | Description |
---|---|
+ | Addition |
- | Subtraction |
* | Multiplication |
/ | Division |
= | Equality |
<> | Not equals |
> | Greater than |
< | Less than |
>= | Greater than equals |
<= | Less than equals |
\ | Integer division |
^ | Power |
( | Open bracket |
) | Close bracket |
Function | Description |
---|---|
AND | Logical AND |
OR | Logical OR |
NOT | Logical NOT |
IF | IF statement in the form: IF(condition, true path, false path) |
TRUE | True constant |
FALSE | False constant |
Function | Min Params | Max Params | Description |
---|---|---|---|
ABS | 1 | 1 | Returns the absolute value of a value |
CBRT | 1 | 1 | Returns the cube root of a double value. |
CEILING | 1 | 2 | Returns the smallest (closest to negative infinity) double value that is greater than or equal to the argument and is equal to a mathematical integer. for example, CEILING(value) or CEILING(value,significance) |
COPYSIGN | 2 | 2 | Returns the first floating-point argument with the sign of the second floating-point argument. for example, COPYSIGN(magnitude,sign) |
DECEXACT | 1 | 1 | Returns the argument decremented by one. |
EXP | 1 | 1 | Returns Euler's number e raised to the power of a double value. |
EXPM1 | 1 | 1 | Returns e^x -1. Note that for values of x near 0, the exact sum of expm1(x) + 1 is much closer to the true result of ex than exp(x). |
FLOOR | 1 | 2 | Returns the largest (closest to positive infinity) double value that is less than or equal to the argument and is equal to a mathematical integer. for example, Floor(a) or Floor(a, significance) |
FLOORDIV | 2 | 2 | Returns the largest (closest to positive infinity) integer value that is less than or equal to the algebraic quotient. |
FLOORMOD | 2 | 2 | Returns the floor modulus of the arguments |
GETEXP | 1 | 1 | Returns the unbiased exponent used in the representation of a double. |
HYPOT | 2 | 2 | Returns SQRT(x^2 +y^2) without intermediate overflow or underflow |
INCEXACT | 1 | 1 | Returns the argument incremented by one |
INT | 1 | 1 | Round down to integer |
LOG | 1 | 1 | Returns the natural logarithm (base e) of a value |
LOG10 | 1 | 1 | Returns the base 10 logarithm of a value |
LOG1P | 1 | 1 | Returns the natural logarithm of the sum of the argument and 1 |
MAX | 2 | M | Returns the greater of two or more values |
MIN | 2 | M | Returns the lesser of two or more values |
MOD | 2 | 2 | Returns the mod of two values |
MULTIPLYEXACT | 2 | 2 | Returns the product of the arguments as an integer |
NEGATEEXACT | 1 | 1 | Returns the negation of the argument as an integer |
PI | 0 | 0 | The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter. |
POWER | 2 | 2 | Returns the value of the first argument raised to the power of the second argument. |
RAND | 0 | 2 | Returns a random number. RAND() returns a random integer. RAND(a) returns a random number between 0(inclusive) and a(exclusive). RAND(a,b) returns a random number between a(inclusive) and b(exclusive) |
RANDBOOLEAN | 0 | 0 | Returns a random Boolean value |
RANDDOUBLE | 0 | 0 | Returns a random double value |
RANDLONG | 0 | 0 | Returns a random long value |
RINT | 1 | 1 | Returns the double value that is closest in value to the argument and is equal to a mathematical integer. |
ROUND | 1 | 1 | Returns the closest value to the argument, with ties rounding to positive infinity. |
SCALB | 2 | 2 | Returns d × 2^scaleFactor rounded as if performed by a single correctly rounded floating-point multiply to a member of the double value set. for example, SCALB(a, scalefactor) |
SIGN | 1 | 1 | Returns the sign of a value for example, SIGN(-a) returns -1, SIGN(0) returns 0, SIGN(+a) returns 1 |
SQRT | 1 | 1 | Returns the correctly rounded positive square root of a value. |
SUBTRACTEXACT | 2 | 2 | Returns the difference of the arguments as an integer. |
SUM | 1 | M | Returns the sum of all arguments. |
TODEGREES | 1 | 1 | Converts an angle measured in radians to an approximately equivalent angle measured in degrees. |
TORADIANS | 1 | 1 | Converts an angle measured in degrees to an approximately equivalent angle measured in radians. |
Function | Min Params | Max Params | Description |
---|---|---|---|
ACOS | 1 | 1 | Returns the arc cosine of a value; the returned angle is in the range 0.0 through pi. |
ASIN | 1 | 1 | Returns the arc sine of a value; the returned angle is in the range -pi/2 through pi/2. |
ATAN | 1 | 1 | Returns the arc tangent of a value; the returned angle is in the range -pi/2 through pi/2. |
ATAN2 | 2 | 2 | Returns the angle theta from the conversion of rectangular coordinates (x, y) to polar coordinates (r, theta). This method computes the phase theta by computing an arc tangent of y/x in the range of -pi to pi. |
COS | 1 | 1 | Returns the trigonometric cosine of an angle. |
COSH | 1 | 1 | Returns the hyperbolic cosine of a double value. |
SIN | 1 | 1 | Returns the trigonometric sine of an angle. |
SINH | 1 | 1 | Returns the hyperbolic sine of a double value. |
TAN | 1 | 1 | Returns the trigonometric tangent of an angle. |
TANH | 1 | 1 | Returns the hyperbolic tangent of a value. |