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: 
anuradhaa
Partner - Creator II
Partner - Creator II

Ignore values from feilds

Hi i have a field called country,

It has lot of values A,B,C,.. and don't know the exact list of values and it is continually growing.

I have a bar chart shows sales by month,Country

I don't want to display Country 'C' in this graph. But i want to load all data(can't elininate it in the script)

So i have use set analysis, but doesn't work

=sum({<COUNTRY-={"C"}>} SALESCOUNT)

please tell me how to fix this issue

Thanks

1 Solution

Accepted Solutions
sasikanth
Master
Master

Go with calculated DIm,

like if(CNTRY<>'C',CNTRY) and supress null values,

then try to make selections

View solution in original post

19 Replies
senpradip007
Specialist III
Specialist III

In Script try like

Load

....

....

From <Table> where Country <> 'C';

anuradhaa
Partner - Creator II
Partner - Creator II
Author

I can't ignore this value from the script, i want in other charts

Thank You

sasikanth
Master
Master

HI

try some thing like below

=sum({<COUNTRY={'*'}-{'C'}>} SALESCOUNT)

anuradhaa
Partner - Creator II
Partner - Creator II
Author

Thanks,

I have tried it too, but there chart doesn't behave according to selections.

Thanks

PradeepReddy
Specialist II
Specialist II

Try like this...

=sum({<COUNTRY-={'C'}>} SALESCOUNT)

anuradhaa
Partner - Creator II
Partner - Creator II
Author

yes, That's the thing that i have tried.But when i use that it shows red underlines after equal sign.

sasikanth
Master
Master

HI

try to upload your sample file,,,,,

Anonymous
Not applicable

HI,

Try it

=sum({<COUNTRY != {'C'}>} SALESCOUNT)

anuradhaa
Partner - Creator II
Partner - Creator II
Author

Hi,,

This is sample qvw.

Please remove County "C" from the chart