Thread: Urgent Help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Urgent Help

Hi,

A couple of steps,
First select your list and then
Data|filter|Advanced Filter check unique records only and click OK
Copy this filtered list and paste it into A1 on Sheet 2

Then back to sheet 1 and data|Filter|Show all

Put this formula in B1 on sheet 2 and drag down to the length of column A

=COUNTIF(Sheet1!A1:A20,"="&A1)

Mike


"kiran" wrote:

Hi All,
I have the follwoing data as shown below -
A
1 BRACES
2 BRACES
3 Primary
4 Primary
5 Oracle
6 BRACES
7 BRACES


my question is I want to pinck the distinct names from column A and to print
in diffrent sheet with count of each my out put should be like...
A B
1 BRACES 4
2 Primary 2
3 Oracle 1


TIA