Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
pgloc2020
Creator
Creator

Calculate and group the counts

Hello all,

I have a data displaying applications and the applicants who submitted those applications.

I have to group the values and display the counts of applicants who submitted 1 applications, 2 applications, 3 applications and so on.

It's very easy to make a pivot table in excel but I want to replicate same in Qlik sense. I just could not figure it out how to group both the applicants and number of applications?

Below is the pivot table created in Excel sheet-

pgloc2020_0-1664552454359.png

Data is something like this-

Column Application contains different types of applications such as Testing, Registration, Exam etc

Column Applicant ID listed the IDs of the applicant who submitted those applications. 

Please help.

Thank you all!

 

Labels (1)
1 Solution

Accepted Solutions
chaorenzhu
Creator II
Creator II

You can create a pivot table, use aggr(count(ApplicantID),ApplicantID) as dimension and count(aggr(count(ApplicantID),ApplicantID)) as measure

View solution in original post

2 Replies
chaorenzhu
Creator II
Creator II

You can create a pivot table, use aggr(count(ApplicantID),ApplicantID) as dimension and count(aggr(count(ApplicantID),ApplicantID)) as measure

pgloc2020
Creator
Creator
Author

OMG...It works. Thank you so much. You are awesome.