Counting words in column

G

got2email

I have a customer spreadsheet that includes a column for company name and
columns for contact information such as first name, last name, email address.
Each company can have many contacts. Each contact must include company name.

I would like to count how many contacts per company. I tried all sorts of
Count and CountA expressions but no luck.

Any help is greatly appreciated.
 
G

Glenn

got2email said:
I have a customer spreadsheet that includes a column for company name and
columns for contact information such as first name, last name, email address.
Each company can have many contacts. Each contact must include company name.

I would like to count how many contacts per company. I tried all sorts of
Count and CountA expressions but no luck.

Any help is greatly appreciated.


Show an example of your data and someone will be able to help you.
 
S

Shane Devenshire

Hi,

If your data looks like this
A B
Company1 Contact1
Company1 Contact2
.....

=COUNTIF(A:A,"Company1")

or better yet, enter all the company names in C1:C10 and

=COUNTIF(A:A,C1)

and copy down.

If this isn't what you want then you will understand why it is important to
supply us with samples.
 
F

francis

try using Countif
eg =COUNTIF(A:A,"abc")

abc is the company name
--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis
 
P

Pete_UK

For some reason the original post isn't showing in Google Groups, so
I'll have to reply to Glenn's.

If every contact has an email address, then perhaps you could use
something like this:

=SUMPRODUCT(--(LEN(E1:E100)-LEN(SUBSTITUTE(E1:E100,"@",""))))

assuming email addresses are in column E, with maybe more than one per
cell.

Hope this helps.

Pete
 

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