Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Filter Issue

Hi all,

I have a list box, in that i have 12 Business ,

and i have created on text box to show selected value in that(GetfieldSelections())

What i want is if i select more than 6 it is showing All Excluding Value.

Can any one tell ,how to resolve this problem ?

Regards,

Nagarjuna

1 Solution

Accepted Solutions
anbu1984
Master III
Master III

=GetFieldSelections(Field,',',100)

View solution in original post

5 Replies
anbu1984
Master III
Master III

=GetFieldSelections(Field,',',100)

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II
Author

Thanks.Let me Cheak......

simsondevadoss
Partner - Creator III
Partner - Creator III

Not applicable

Returns a string with the current selections in a field.

ValueSep is the separator to be put between field values. The default is ', '.

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.

Examples

getfieldselections ( Year )

getfieldselections ( Year, '; ' )

getfieldselections ( Year, '; ' , 10 )

hariprasadqv
Creator III
Creator III

Hi Nag!,

Try This

=GetFieldSelections(Business,',',12)

Syntax: =GetFieldSelections(Name_of_the_Fiels,Seperator,Maximum_Number_of_values_can_select)