How to add your knowledge

Conditional Statements

    Table of contents
    1. 1. Topics in this section

    The computation of a rule might depend on the value of another rule. A Conditional statement evaluates a test expression at runtime and executes specific statements based on the result of that evaluation. The test expression must evaluate to a Boolean value (True or False).

    The Intent language uses two types of conditional statements:

    • If...Then...Else statement
    • Select...Case statement