Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
arasaraja_cts
Partner - Contributor III
Partner - Contributor III

How to avoid ALL / NOT when multiple fields are selected ?

In the attached image ,

=Concat(Alpha,'|') give all the selected alphabets separated by delimiter, whereas

this =Concat(GetFieldSelections(Alpha),'|') give different result, can I avoid this ALL & NOT behaviour.

1 Solution

Accepted Solutions
sunny_talwar

May be this:

=Concat(DISTINCT Alpha,'|')

or this:

GetFieldSelections(Alpha, '|', 10000000)

Make sure that 1000000 is greater than distinct possible values within the field Alpha

View solution in original post

2 Replies
sunny_talwar

May be this:

=Concat(DISTINCT Alpha,'|')

or this:

GetFieldSelections(Alpha, '|', 10000000)

Make sure that 1000000 is greater than distinct possible values within the field Alpha

arasaraja_cts
Partner - Contributor III
Partner - Contributor III
Author

Thank you Sunny , the second one worked for me.

Thanks

Raja