Missing values
Rule: Always worry about what will happen if you have missing values.
The way it works: Missing values are "less than" all other values, as if they were equal to minus infinity.
That is, if SCORE=. Then:
IF Score LT 65 ...
is true, and
IF 0 LE Score LT 65 ...
is false.