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

Groupby

Hi,

I have columns (status1,status2,status3) and (Month1,Month2,Month3)  in  table1,table2,table3 respectively.

I have concatenated those columns as Status and Month.

Now my query is:

If status=closed I want the count of ID's groupby Month i.e In jan how many ID's are closed?

Labels (1)
1 Reply
anbu1984
Master III
Master III

In Script

Load Month,Count(Status) Resident Table Where Status='Closed' Group by Month;

In Chart,

Dimension: Month

Expr: Count({<Status={'Closed'}>}Status)