This set entered on 7-26-14
7.26.14.5
Length * Width * Height
The CONCATENATION OPERATOR (&). It hooks together two text values, as in:
Length & “ Inches”
If the LENGTH FIELD contains 36, the result of this calc is: 36 Inches
You often need to compare two values, for example, you may need to add an additional shipping charge of the total weight if an order is more than 20 pounds. ALL COMPARISON OPERATORS RESULT IN A BOOLEAN VALUE.
=, >, etc.
They evaluate values and come up with a BOOLEAN (YES/NO) result. Unlike the other operators, most of the LOGICAL OPERATORS are recognizable words.
it tells you if both values are YES.
It EVALUATES to Yes if the Length is more than 3 AND the Height is more than 5.
EITHER VALUE IS YES.
It evaluates to Yes if the length is more than 3 OR the Height is more than 5.
It would evaluate to Yes if the length is NOT more than 3. It simply reverses the BOOLEAN value that comes after it.
It lets you calculate exponents, as in
Pi * Radius ˆ 2.
This calculation squares the value IN THE RADIUS FIELD.