Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

selection Question.

hi  i'm lee from S.Korea

I have one Question about Selection.

suppose

i have one ListBox of Customers.(a, b, c, d, e .......z)

then, I have multi Choice  using Ctrl Key. (a,b,c,d,e,f,g,h,i,j,k) 11 customers.

the Thing is,  selection box present [ Customer   11/28]

I want to see all Customer like a, b, c, d, e, f, g, h, i, j, k.

there are no method?

or

way of macro use.. is ok.

how can i get the all Value.

please let me know.

1 Solution

Accepted Solutions
JonnyPoole
Employee
Employee

In the 'current selections' box it won't show more than a few unique names before it shows 'x of y' counts.

In a text box though you can list them in a delimitted fashion with this expression:

'List of Customers: '  &   concat( distinct  [Customers] , ',')

...where [Customers] is the name of your field containing the customer names.

View solution in original post

5 Replies
JonnyPoole
Employee
Employee

In the 'current selections' box it won't show more than a few unique names before it shows 'x of y' counts.

In a text box though you can list them in a delimitted fashion with this expression:

'List of Customers: '  &   concat( distinct  [Customers] , ',')

...where [Customers] is the name of your field containing the customer names.

Siva_Sankar
Master II
Master II

Hi Lee,

You can use custom current selection box as shown in the attachment. sorry for my misunderstanding in earlier post.

Siva_Sankar
Master II
Master II

If you want to show all values then you need increase the values of current selection box in "User Preferences" settings in qlikview. Find the screenshot attached.

ashfaq_haseeb
Champion III
Champion III

Hi,

That is not supported by Qlik.

Instead you can use alternates.

have a look at below link.

Current Selection Alternatives

regards

ASHFAQ

Not applicable
Author

Thank you jpe

it is very helpful.