Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Nourrahmcnean
Contributor III
Contributor III

Multi Box with a condition

Hey, I want to exclude Z from  in the list of the multibox and show only Items from Type E

Nourrahmcnean_0-1630316174652.png

I added this expression =if( not Match (Item,'Z') AND Match(Type,"E"), Item)

But it prints an empty list.

 

Labels (1)
1 Solution

Accepted Solutions
Or
MVP
MVP

You've got the wrong quotes around the 'E', but otherwise that should work. Keep in mind that using this multibox will apply selections to both the Item and Type field at the same time, not just the item, e.g. selecting 'X' will select Item = X, Type = E.

Or_0-1630318241180.png

 

View solution in original post

2 Replies
Or
MVP
MVP

You've got the wrong quotes around the 'E', but otherwise that should work. Keep in mind that using this multibox will apply selections to both the Item and Type field at the same time, not just the item, e.g. selecting 'X' will select Item = X, Type = E.

Or_0-1630318241180.png

 

Nourrahmcnean
Contributor III
Contributor III
Author

Thank you for the explanation