Rule Statement Format

Basic rule statements contain a condition and an action.

Rules are written using the following format:
if (condition)
then {action}
  • if outlines the condition or conditions that must be met.
  • then outlines the action that will occur if the conditions are met.

If you use the optional ELSE statement, an alternate action will occur if any portion of the if conditions are not met.

if (condition)
then {action}
else {alternate action}
Important: The rule editor is case-sensitive.
  • www.fico.com