Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
In this expression Concat(GetFieldSelections(Work)) I am not able to understand why this is not getting all selected values as when the selection increased 6 selections it is showing Not and then later selections and if all selctions are selected it is showing ALL , not sure whether any other function should be used.
Thank You
Ferha
Try this:
=GetFieldSelections(Work, ',', 9999)
Update:
here ',' is the seperater between each selected value and 9999 is telling the expression to show 9999 different values instead of showing ALL after the selection exceeds a certain count.
HTH
Best,
Sunny
Hi Ferha,
As per my understanding, your trying to display the selection of the field in text box?? if you when you are selecting more values , may be due to the space constraint its showing like that....try like:
Concat(GetFieldSelections(Work),'&')
can you please share the what you getting and what the issue
Thank You so much it is working....
Please try
Concat(GetFieldSelections(key,',',GetSelectedCount(key)))
Awesome
I am glad I was able to help.
If you got your answer I would suggest marking correct answer as well as any helpful answers
Best,
Sunny