Counting in Pivot table

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

The Group A of the 2 applicants have 3 applications each
i can only show how many applications in total - 6

How can i count how many applicants in Group A?

My Pivot table is Group, Applicant, Application

Then the table can show
Group A (2) Application (6)

Thanks a lot.

Tony
 
A pivot table won't calculate a unique count. However, you could add a
column to the source table, then add that field to the pivottable.

For example, to count unique applicants per group, where Group name is
in column C, and applicant name is in column D:
=IF(SUMPRODUCT(($C$2:$C2=C2)*($D$2:$D2=D2))>1,0,1)

Copy this formula down to all rows in the database.

In the pivot table, add Group name to the row area, and add this field
to the data area, and you'll get a count of unique applicants.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top