Examples

Some examples of scope are as under

Condition
Field
Expression

Show "Enter Other Designation" text field if "others" is selected

designation, other_designation

${designation} = 'others'

[designation can be a dropdown list. 'others' is the code of the label 'Others']

Enter the education details if age is greater than 5 school going

age, school_going, education_details

${age} > 5 and ${school_going} = 'yes'

Last updated