Get the Attribute
Switch comparison type
Case Greater than
If (attribute1 is > Value)
Eliminate the decision
End if
Case Less Than:
If (attribute 1 is < Value)
Eliminate the decision
End if
Case Equal To
If (attribute 1 = = Value)
Eliminate the decision
End if
End switch
Note: Alphanumeric comparison is case sensitive.
Eliminate Decision by Attribute Value. |