Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Eliminating field value

I have a field called region with different region names.In regions I have Atlanta,Floroda,washington etc.I dont want to display Atlanta in that Region list box.How can I do this ?Please help me.

Thanks in advance.

5 Replies
Not applicable
Author

On the general tab of List Box Properties, select <Expression> in the field drop down. Use this expression to exclude Atlanta (assuming your field is named "Region"):

=if(Region='Atlanta',null(),Region)

MayilVahanan

Hi

Try like this

In expression

=if(Region<>'Atlanta',Region)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
tresesco
MVP
MVP

Try expression for the list box, expression:

=If(Region<>'Atlanta', Region)

nizamsha
Specialist II
Specialist II

=if(Region<>'Atlanta',Region)

Not applicable
Author

Or you can put that limitation on you expression with SetAnalysis.

Sum({$<Region={'Atlanta'}>}[Region Sales])