Reputation: 17611
I want something very similar to the above. Consider input like
GL15
GL15
GL15
GL16
GL17
GL17
GL17
The above column is just one of the columns in a sheet. I want the output to be
GL15 3
GL16 1
GL17 3
I was hoping Pivot Table would solve this. So I added the column as a "Row Label" but I cannot get the count to work.
Please can someone provide some instructions?
Upvotes: 0
Views: 988
Reputation: 53126
Here how to setup the Pivot Table:
Procedure:
Item
from Choose Fields list into Row LabelsItem
from Choose Fields list into Values (defaults to Count)Upvotes: 4
Reputation: 308
I think this will help ..
Salesperson Invoice
Buchanan 15,000
Buchanan 9,000
Suyama 8,000
Suyama 20,000
Buchanan 5,000
Dodsworth 22,500
Formula Description (Result)
=COUNTIF(A2:A7,"Buchanan") Number of entries for Buchanan (result = 3)
=COUNTIF(A2:A7,A4) Number of entries for Suyama (result = 2)
=COUNTIF(B2:B7,"< 20000") Number of invoice values less than 20,000 (result = 4)
=COUNTIF(B2:B7,">="&B5) Number of invoice values greater than or equal to 20,000 (result = 2)
try like this,. if you want some help tell . I think this will help ..
Thank you... Sampath Sri Anuradha Web Designer and Developer
Upvotes: 0