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

GetFieldSelections returns count of values

GetFieldSelections() returns something like "7 of 50" when multiple values are selected in a listbox. How can get the actual selected values.

Labels (1)
1 Solution

Accepted Solutions
bharathadde
Creator II
Creator II

Try this one

=Replace (GetFieldSelections("Your Field Name",',',50), ', ' , '","' ) which displays all 50 selected.

For suppose if you replace number 50 with 10 like below

=Replace (GetFieldSelections("Your Field Name",',',10), ', ' , '","' )

Then it only display values till 10th selected, as soon as you select 11th it displays 11 of 50 instead of displaying values selected.

Hope this works for you

View solution in original post

1 Reply
bharathadde
Creator II
Creator II

Try this one

=Replace (GetFieldSelections("Your Field Name",',',50), ', ' , '","' ) which displays all 50 selected.

For suppose if you replace number 50 with 10 like below

=Replace (GetFieldSelections("Your Field Name",',',10), ', ' , '","' )

Then it only display values till 10th selected, as soon as you select 11th it displays 11 of 50 instead of displaying values selected.

Hope this works for you