Skip to main content
Announcements
Sept. 27, 10AM ET Do more with Qlik, Insight Advisor – our intelligent AI-assistant in Qlik Sense: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

group

hi ,

I have field like  region,   in that I have   south ,north,east,west     In each region I have some other states

so  I have a pie with the  region   and count(id)   so    I need  to show   only     South and North   count only how to do that?

region is coming from 3tables  used applymap to get the region.

how to group only  north and south?

3 Replies
its_anandrjs

Share sample or do like this

count( {<Region = {'north','south'} >} id)


Note :- In dimension select Suppress when value is null

Anil_Babu_Samineni

Can this do?

count({<region = {"South","North"}>} id)

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
avinashelite

Other way would be

in the dimension

if(Region='north' or Region='south',Region)


suppress null in the dimension


expression

Count(id)