Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

7 Replies
sunny_talwar

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
Partner Ambassador/MVP
Partner Ambassador/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

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