Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set analysis issue

how to display 97 countries out of 100 ,

3 are excluded by using set analysis

????

heip me

thanks in advance

Labels (1)
7 Replies
sunny_talwar
MVP
MVP

May be like this:

Sum({<Countries -= {'Country1', 'Country2', 'Country3'}>} Measure)

Chanty4u
MVP
MVP

May be try this also

sum( {$<Countries = E({1<Countries ={‘C1’,'C2','C3'}>})>} Measure)

Not applicable
Author

i have to display 97

it has to change dynamically as selection made in list box

vishsaggi
Champion III
Champion III

Where do you want to display these countries? In a list box or a text box or a straight table?

IN text box try this:

= IF(Not Match(Country, 'Country1', 'Country2', 'Country3'), Concat(Country, '|'))

kaushiknsolanki
MVP
MVP

Hi,

Try this expression.

Sum({1-$}Measure)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
sunny_talwar
MVP
MVP

Do you mean if you select 10 out of the 97 countries, the expression should just show those 10? I think the expression should already do that.

Not applicable
Author

thanks to all

for the answers