You've got working examples posted. It's pretty dang simple.
You've used the software for 3 years haven't figured out the help system?
In 30 seconds I've found this (which may not upload properly is this site)
About Operators Used in Relations
The following operators can be used in relations, both in equations and in conditional statements.
Arithmetic Operators
+
Addition
–
Subtraction
/
Division
*
Multiplication
^
Exponentiation
()
Parentheses for grouping
for example, d0 = (d1–d2)*d3
Assignment Operator
=
Equal to
The equal (=) sign is an assignment operator that equates the two sides of an equation or relation. When the equal sign is used, the equation can have only a single parameter on the left side.
Comparison Operators
Comparison operators are used when a TRUE/FALSE value can be returned. For example, the following relation returns TRUE whenever d1 is greater than or equal to 3.5. It returns FALSE whenever d1 is less than 3.5:
d1 >= 3.5
The following comparison operators are supported:
==
Equal to
>
Greater than
>=
Greater than or equal to
!=, <>,~=
Not equal to
<
Less than
<=
Less than or equal to
|
Or
&
And
~, !
Not
Note: The "equal to" assignment operator is different from the "equal to" comparison operator.
The operators |, &, !, and ~ extend the use of comparison relations by enabling several conditions to be set in a single statement. For example, the following relation returns TRUE whenever d1 is between 2 and 3, but not equal to 2.5:
d1 > 2 & d1 < 3 & d1 ~= 2.5
Conditional Statements in Relations
Note: Relations containing conditional statements are not sorted. A condition is an expression that is either TRUE (or YES) or FALSE (or NO). These values can be used interchangeably in the conditional statement. For example, the following statements can all be evaluated the same way:
IF ANSWER == YES
IF ANSWER == TRUE
IF ANSWER
IF Statement
You can add IF statements to relations to create conditional statements. For example,
IF d1 > d2
length = 14.5
ENDIF
IF d1 <= d2
length = 7.0
ENDIF
ELSE Statement
By adding the ELSE statements in the branches, you can create more complex conditional constructions. With these statements, the previous relation may be modified as follows:
IF d1 > d2
length = 14.5
ELSE
length = 7.0
ENDIF
There can be several features listed between the IF, ELSE, and the ENDIF statements. In addition, the IF|ELSE|ENDIF constructions can also be nested within feature sequences.
The syntax of the IF clause is as follows:
IF <condition>
Sequence of 0 or more relations or IF clauses
ELSE <optional>
Sequence of 0 or more relations or IF clauses <optional>
ENDIF
Consider the following rules:
ENDIF is spelled as one word.
ELSE is added on a separate line.
Equal in conditional statements is entered as two equal signs (==). Assignment is entered as a single equal sign (=).
Was that so HARD??????????
----------------------------------------
The Help for this program was created in Windows Help format, which depends on a feature that isn't included in this version of Windows.