SOLVED

How to count symbols in a cell in MS Excel

Copper Contributor

I have a cell reference which contains six codes: B_NEW_2; B_NEW_3; B_NEW_4; B_NEW_5; B_NEW_6; B_NEW_7 in MS Excel.

I wish to calculate the number of semi colons in the cell.  

Please advise.

5 Replies
best response confirmed by Hans Vogelaar (MVP)
Solution
a common technique for this is:
=LEN(A1)-LEN(SUBSTITUTE(A1,";",""))

@mtarler 
Thank you for your response.  But, I wish to count the number of semi-colons in the cell reference ie. there are five semi-colons in the cell reference.

How do we do that?

@te7037 

Why didn't you try it? @mtarler's formula does exactly what you asked.

S1982.png

Yes, it did work. Thank you.
Thank you. It worked.
1 best response

Accepted Solutions
best response confirmed by Hans Vogelaar (MVP)
Solution
a common technique for this is:
=LEN(A1)-LEN(SUBSTITUTE(A1,";",""))

View solution in original post