Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone
I am Deepak, I am new to qlikview
I have a question
In one bar chart i have expression
Sum( {$<[Country]={'India'}>} [Quantity] )
which means to include only Country India for Quantity as Expression in chart
But i have to do opposite of this Expression
I want to Know how to Exclude Country India only, from Quantity Expression
For this how to write Expression
Any Answer would be helpful for me
Thanking you all
Use operator "-=" ("minus equal") instead of "=", like this:
Sum( {$<[Country] -= {'India'}>} [Quantity] )
Use operator "-=" ("minus equal") instead of "=", like this:
Sum( {$<[Country] -= {'India'}>} [Quantity] )
Ok Thanks Oleg for your help