Error Messages/40206
Warning Message
- The expression evaluation is attempting to use the "else" result from an IF-THEN construct that does not have an ELSE clause.
Cause
Consider this definition of a variable
When this is evaluated and there is a municipality with 100K or more people, there is no value provided by the expression, and thus, this warning results. If the warning is ignored, the value will be Null. In a case like this, you should stop the evaluation and add an Else clause, even if you want the result to be Null, e.g.
The appropriate time to omit the Else clause is when the result value is going to be ignored no matter what. For example,
See Also
Comments
Enable comment auto-refresher