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

dynamic display of values of a field

Hi all ,

I have field as "Group" . I have got a requirement that if somebody selects a group and locks it and after that if he/she navigates .

Then the selected values should be shown throughout the application as pop up or something .

Can anybody advise me how can i show the same ? I don't want to use current selection box as it will display everything that will be selected throughout . Or is there any option to restrict one field values to be shown in current selection box ?

Thanks in advance.

Regards,

Anjali Ahlawat

3 Replies
qlikmsg4u
Specialist
Specialist

Instead you can use a text object with expression as =GetFieldSelections(Group)

and Show condition as GetSelectedCount(Group)>0..

The text box will display the field value if there is any selection in that particular field

anjali0108
Partner - Creator III
Partner - Creator III
Author

But when I am selecting more no.of groups it is showing 9 out of 25 like this.Can't I see the list of selected groups ?

maxgro
MVP
MVP

there is a parameter, Maxvalues in the function you can use

getfieldselections ( FieldName [, ValueSep [, MaxValues [, State]]])

Maxvalues is the maximum number of field values to be individually listed. When a larger number of values is selected the format 'x of y values' will be used instead. The default is 6.


also you can try with the concat (or concat distinct) function