Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vipingarg23
Creator
Creator

Multiple selections in another field

Hi Team,

I have two listboxes. One is A and another one is also A but with alternate state test.

Here I want that If I select any value in A, it should automatically select that value in another one which contains alternate state. I applied a trigger and it is working fine for one value but not working for multiple value.

Please find the attached sample...

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Use search string expression like:

='('&GetFieldSelections(A,'|')&')'

View solution in original post

3 Replies
tresesco
MVP
MVP

Use search string expression like:

='('&GetFieldSelections(A,'|')&')'

sunny_talwar

Try this for your trigger

='(' & Concat(DISTINCT Chr(34) & A & Chr(34), '|') & ')'

vipingarg23
Creator
Creator
Author

Excellent and thank you for your quick reply.

Both are working fine...Thanks a lot sunny and Tresesco for your help.