Can anyone point me to an example of using "if then else" in a column with drop-down options?
I have a drop-down list of countries (Angola, ..., Zambia) and in the same list a further option - Intercountry. I.e. all in a single column.
I would like the validation to permit the user to select multiple countries in the list if Intercountry is selected, but otherwise restrict the user to select only a single country, as in this pseudocode:
Many thanks for any pointers!
I have a drop-down list of countries (Angola, ..., Zambia) and in the same list a further option - Intercountry. I.e. all in a single column.
I would like the validation to permit the user to select multiple countries in the list if Intercountry is selected, but otherwise restrict the user to select only a single country, as in this pseudocode:
Code:
If Intercountry
Then select multiple countries = true
Else select multiple countries = false
Many thanks for any pointers!