In this topic:
In an Askia survey, a routing instruction has three parts:
condition (context of the execution) andaction (what happens if the condition is satisfied).In AskiaDesign, the following considerations apply:
Askia defines truthy and falsy values, which indicate how the expression returned by the condition will be treated.
The following expressions are considered False:
False ' => Explicit false 0 ' => Zero DK ' => DK value
All other values are considered True.
Return Age ' => 2 (True) Return 0 ' => False Return DK ' => DK (False) Dim Text = "ABC" Return Text ' => "ABC" (True)