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

boxes and lists

please help

I create a list, select the list type field.

in the field there are several types (type 1, type 2, type 3).

I need to be seen in the list of type1 and type2 only.

Снимок.PNG.png

1 Solution

Accepted Solutions
rustyfishbones
Master II
Master II

Create a Calculated Expression in the List Box and say

IF(typ <> 'typ 3', typ)

View solution in original post

4 Replies
rustyfishbones
Master II
Master II

Create a Calculated Expression in the List Box and say

IF(typ <> 'typ 3', typ)

alexandros17
Partner - Champion III
Partner - Champion III

in that object instead of selecting a field select expression and write :

if(typ <> 'type1' or typ <> 'type2', '', typ)

hope it helps

rustyfishbones
Master II
Master II

you can create the calculated expression by selecting Expression at the bottom of the list

2014-01-24_1249.png

Anonymous
Not applicable
Author

Hi,

In your list box settings, tab General, choose the field expression and write this expression:

=if(typ<>'typ 3', typ)

Hope this helps,

Quentin