Forum Discussion
te7037
Nov 15, 2022Copper Contributor
How to count symbols in a cell in MS Excel
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.
- a common technique for this is:
=LEN(A1)-LEN(SUBSTITUTE(A1,";",""))
- mtarlerSilver Contributora common technique for this is:
=LEN(A1)-LEN(SUBSTITUTE(A1,";",""))