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: 
Anonymous
Not applicable

issue with current selection box

Hi I have a strange issue. In the attached screen shot, i have Segment as my list box and customer number as my list box. When i select multiple customers ( 1, 26,58) from belonging to different segments ( gold and silver), then those segments are highlighted in white. When i select only one segment ( silver).. the customer listbox is removing the customer number 1 . But the current selection box is still showing me those 3 customers. Please see both attached screen shots.

@massimo Gross

MRKachhiaIMP

8 Replies
sunny_talwar

What do you get when you create this expression in a text box:

=GetSelectedCount([Customer Number]) & '|' & GetFieldSelections([Customer Number])

swuehl
MVP
MVP

I think that's standard QV behaviour, you still have an active selection on this customer, which will be considered again if you change your other selections (like removing your silver selection).

edit:

Maybe this explains it better:

Colors, States and State vectors

Even a not possible value can be selected...

Anonymous
Not applicable
Author

when only customers are selected i get 3/ 1,26,58

but when segment is selected i get 2/26,58,1

swuehl
MVP
MVP

Compare with

=GetSelectedCount([Customer Number], true) & '|' & GetFieldSelections([Customer Number])

Anonymous
Not applicable
Author

swuehl, is there any way we can remove that from the current selection box

Anonymous
Not applicable
Author

its same result

swuehl
MVP
MVP

The first value has not changed to 3?

swuehl
MVP
MVP

swuehl, is there any way we can remove that from the current selection box

Hm, don't think so. Maybe with some alternative selection boxes (something like shown here), but these seem to make use of GetCurrentSelections(), hence they will show same issue. Maybe someone can come up with a solution using concat() or something like that.