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: 
laureadiaz
Contributor III
Contributor III

I am limiting a list box, but it is causing the current selection to pick up the limiting factor, how do I get rid of that

Hello,

   I am limiting a list box with the following expression,

=IF(Qty_1>'0',Short_ID

  The List box is limiting the Short_ID's that have a Qty_1, but now, when I select something with that List Box it also selects Qty_1.

   How do I just get it to select the Short_ID and not Qty_1?


Thanks!


1 Solution

Accepted Solutions
sunny_talwar

Try this

Aggr(Only({<Qty_1 = {'>0'}>} Short_ID), Short_ID)

View solution in original post

2 Replies
sunny_talwar

Try this

Aggr(Only({<Qty_1 = {'>0'}>} Short_ID), Short_ID)

laureadiaz
Contributor III
Contributor III
Author

Thanks these worked!