Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Go with calculated DIm,
like if(CNTRY<>'C',CNTRY) and supress null values,
then try to make selections
In Script try like
Load
....
....
From <Table> where Country <> 'C';
I can't ignore this value from the script, i want in other charts
Thank You
HI
try some thing like below
=sum({<COUNTRY={'*'}-{'C'}>} SALESCOUNT)
Thanks,
I have tried it too, but there chart doesn't behave according to selections.
Thanks
Try like this...
=sum({<COUNTRY-={'C'}>} SALESCOUNT)
yes, That's the thing that i have tried.But when i use that it shows red underlines after equal sign.
HI
try to upload your sample file,,,,,
HI,
Try it
=sum({<COUNTRY != {'C'}>} SALESCOUNT)
Hi,,
This is sample qvw.
Please remove County "C" from the chart