Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have getting 2 different outputs from different selection methods.
When I use an Action and Select in field: [Issue] with search string ("ABC"|"DEF")
and from this formula in the caption:
=
subfield(GetFieldSelections([Issue],'; ',getselectedcount ([Issue])), '; ',1)&' '&GetFieldSelections([Month-Year],', ',getselectedcount ([Month-Year]))
I get ("ABC"|"DEF") Sep-15
but when select ABC DEF from the field with the mouse I get
ABC as its the first selection in subfield.
Why is the search string in the action not returning the same on both mewthods of selection?
Thanks
GetFieldSelections return the search string if one was used to make the selection, not the individual values that are the result of the search string. If you need those values then use concat(distinct Issue, ',')