$ELSE after $ELSE is not allowed

The compiler directive $ELSE can only appear once in a $IFDEF..$ENDIF block. Here is an example of how these directives might be used correctly:

$define Test
$ifdef Test
  title = "My Formula (test version)"
$else
  title = "My Formula"
$endif

See Also
Errors