Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

List box selection

Hi All,

I have a listbox .My aim is to if I select one value in list box it should select another value so totally two values should be selected.

Lets say my list box contains names of countries

Country

us

uk

Canada.

Mexico

So if i selelct U.S ,then Canada should also be selected and the rest selections are normal.

Thanks

1 Solution

Accepted Solutions
sunny_talwar

Try out the attached sample

View solution in original post

4 Replies
sunny_talwar

You can use a trigger to achieve this

Anonymous
Not applicable
Author

Yeah I tried with following expression in select field.

if(GetFieldSelections(Country)='US',Only({<Country={'US','UK'}>}Country),Country).

But it's not giving the desired result .

sunny_talwar

Try out the attached sample

Anonymous
Not applicable
Author

Thank You !! Its Working