Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
What do you get when you create this expression in a text box:
=GetSelectedCount([Customer Number]) & '|' & GetFieldSelections([Customer Number])
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...
when only customers are selected i get 3/ 1,26,58
but when segment is selected i get 2/26,58,1
Compare with
=GetSelectedCount([Customer Number], true) & '|' & GetFieldSelections([Customer Number])
swuehl, is there any way we can remove that from the current selection box
its same result
The first value has not changed to 3?
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.