Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
raju_salmon
Creator II
Creator II

List box value filtering

Dear Experts,

I have a list box contain some names, whereas i want to show only few selected names.

Ex:

Name

ABC

XYZ

STR

VWX

SDR

I want to show display a list box without XYZ and SDR, is there any way like writing a expression on sort tab or any other way.

Please suggest.

Regards,

Raju Salmon

1 Solution

Accepted Solutions
Not applicable

For writing an expression u can go to list box properties,

on general tab field----> expression --bottom most value of list box

View solution in original post

5 Replies
Not applicable

u can write an expression in the list box

if(name<>'XYZ',if(name<>'SDR'),name)

Thanks and Regards

Khushboo

Not applicable

For writing an expression u can go to list box properties,

on general tab field----> expression --bottom most value of list box

maxgro
MVP
MVP

make a listbox with the express (at the bottom)

=if(not Match(Name,'XYZ','SDR'), Name)

Not applicable

use the follwing expression in List box as Expression

=if(not Match(FieldName,'Value1', 'Val2'), FieldName)

qlikmsg4u
Specialist
Specialist

Use this

=If(not Match(Name,'XYZ','SDR'),Name)