Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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
Thank you Sunny , the second one worked for me.
Thanks
Raja