business intelligence - How to select a particular number in a list box and make the other list box to only display the numbers greater than the selected number in QlikView? -
i have 2 list boxes: box1 , box2. box1 has values 10,20,30,40 etc , box2 has same 10,20,30 etc.
after creating 2 separate list boxes box1 , box2 respectively in dashboard, how show values in box2 greater selected value/values in box1.
example: when click 20 in box1, want values 30, 40 etc displayed or shown in box2 i.e., values greater 20 has displayed. thank you.
an alternative way create list box instead of setting use normal field, set use expression instead (select in "field" drop down in properties).
you use following expression should trick:
=aggr(if(f2 > max(f1),f2,if(getselectedcount(f1)<>0,null(),f2)),f2)
in above, first field f1
(i.e. box1) , second f2
(i.e. box2).
an example of how looks in practice shown below (the third box on right contains expression), first image shows happens if values selected in f1
- list of values filtered.
in second image, selection has been made in new list box, , can see, makes selection against f2
automatically.
Comments
Post a Comment