Find number of times certain words show up in a column

B

BRB

I have a spreadsheet with roughly 2000 rows and 4 columns with column "A"
having model Par Numbers (which contain alphanumeric characters). I need to
end up with a count of how many times each PN shows up. The result can be in
the same sheet or a new one, but must be a list of unique PNs and their
respective count.
Since I have to do this twice weekly it becomes very time consuming to do it
manually. Can someone help me with this? Thanks,
 
P

Per Jessen

Hi

To create a list of unique PN, select column A, goto Data > Advanced Filter
Action: Copy to another location > Copy to: select cell on current sheet >
Check 'Unique records only' > OK

Suppose you have your unique list in E2 and down, enter this formula in F2
and copy it down as required:

=COUNTIF(A:A;"="&E2)

If you want to have it more automated, you will need a macro.

Regards,
Per
 

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

Top