Count the number of Commas found in cell A2

B

B~O~B

Is there a way to count the number commas (,) in a cell?? I am doing
a text to column by Commas (,) then doing a Countif on the data to get
my number... Is there a was to count with doing the text to column????
 
R

Ron Coderre

Here's one way to count
the number of commas in a cell:

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))

Does that help?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
 
B

B~O~B

Here's one way to count
the number of commas in a cell:

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))

Does that help?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)






- Show quoted text -

Work for me.... Thanks you very much...
 
R

Ron Coderre

You're welcome.....I'm glad I could help.

Regards,

Ron
Microsoft MVP (Excel)
 
Top