Nest conditional expressions
Create more complex expressions by nesting conditional statements inside one another to handle situations requiring complex branching.
For example, assume MyTag1 = 1, MyTag2 = 2, and MyTag3 = 3.
This example evaluates to 3:
IIF( ::MyController.MyTag1 > ::MyController.MyTag2, 1,
IIF( ::MyController.MyTag2> ::MyController.MyTag3, 2, 3 ) )
OR
This example evaluates to 3:
::MyController.MyTag1 > ::MyController.MyTag2 ? 1 :
::MyController.MyTag2> ::MyController.MyTag3 ? 2 : 3
Provide Feedback