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

how to display all countries names in the list box without one specific city?

could u please help with this question?

1 Solution

Accepted Solutions
vardhancse
Specialist III
Specialist III

We can deselect not required values like using =if(Business<>'mumbai',Business) so except mumbai all the values will be displayed

View solution in original post

6 Replies
vardhancse
Specialist III
Specialist III

in list box->properties->General->Field->Expression(Instead of direct field)

=if(Business='Mumbai',Business) then it will display only mumbai others will not be displayed

vardhancse
Specialist III
Specialist III

We can deselect not required values like using =if(Business<>'mumbai',Business) so except mumbai all the values will be displayed

amit_saini
Master III
Master III

Sri,

Can be done in two ways:(Suppose want to show all countries except Poland)

Script Side :

....

FROM

[.....

Where Country <>'Poland';

Front Side as Calculated exppression:

=if(Country<>'Poland',Country)

Thanks,
AS

MarcoWedel

‌please provide sample data and expected result.

regards

Marco

Not applicable
Author

awesome sasi...i got it. thank u for ur answer

vardhancse
Specialist III
Specialist III

Can please mark it as correct answer, so that it might helpful to some one.