I have a list of 30,000 computer names that I am trying to analyse. Many of the names appear multiple times on the list, and I am interested in quickly identifying those machines that appear 2, 3, 4, 5, 6,.. times.
The easiest way I can think of to present the data so it can be used quickly is to use a pivot table.. but instead of the rows being the computer names, and the data being the count, I would like the row to be the computer name grouped under the "count of the counts"
How can I present a Count of Counts using a pivot table.
For example if I have a list:
A,A,B,C,C,C,D,EE,FFF
I would want it to appear in the pivot table grouped by how often the computer name appears. so I could collapse it and my rows would be 1, 2, 3... which I could expand to see the names of the computers that appeared only once, twice, or three times on the list.
Does this make sense?