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

How ignore a value from a field?

Hello everyone,

Imagining i have a field "Countries" and there are 3 values (USA, Canada, Brazil).

I want to create a bar chart, that shows values only from Canada and Brazil, and ignore values from USA.

Is it possible to ignore a value and don´t display data in the chart?

Thanks,

Rodrigo

4 Replies
sunny_talwar

Try this in your set analysis:

{<Country = {'Brazil', 'Canada'}>}

sudeepkm
Specialist III
Specialist III

in case you want to display values from all except USA then you can use like below.

{<Country = {"*"} - {"USA"} >}

sasiparupudi1
Master III
Master III

or

{<Country-= {'USA'} >}

satishkurra
Specialist II
Specialist II

Also please take the below inputs



{<Country-= {'USA'} >}

This will work as below

{<Country= {COuntry - 'USA'} >}


OR


{<Country= -{'USA'} >}

This will work as below

{<Country= {*- 'USA'} >}


Both are correct, it depends on the type of requirement you are suppose to display to the business.


Thanks

Satish