Counting multiple numbers in one cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to count various numbers and letters in multiple cells that are
seperated by commas.

Example

a1 = 1,4
b1 = 3,89,3,16
c1 = 3a,4,7

I only want to count the number of unique entries in each cell (meaning a1
would result in 2, b1 would result in 4, and c1 would result in 3, etc.)

Is there a way to do this?

Please help. Thank you.
 
Hi
if you only want to count the number of entries per cell try
=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1
 
Should B1 be 3 or 4 (3 is a lot more tricky)?

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thank you very much for the formula, very helpful. One other question. Is
there a shorter way to do this for multiple cells in a row (e.g. a1:a5)
rather than just adding up the formulas cell by cell (e.g.
=(LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1)+(LEN(A2)-LEN(SUBSTITUTE(A2,",",""))+1)+...etc.)

Thank you again for your help.

Chaim Lubin
 
Hi
try:
=SUMPRODUCT((LEN(A1:A10)-LEN(SUBSTITUTE(A1:A10,",",""))+1)*(A1:A10<>"")
)
 
Thank you, I hope to be as good as you one day.

Frank Kabel said:
Hi
try:
=SUMPRODUCT((LEN(A1:A10)-LEN(SUBSTITUTE(A1:A10,",",""))+1)*(A1:A10<>"")
)
 

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

Back
Top