Count the number of specific characters in a cell

JayReddy

New Member
Joined
Sep 9, 2014
Messages
9
Good Day,

I am trying to write a formula to count the number of specific characters in a cell. This has proved successful to a degree utilising a LEN formula that I have listed below:

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

With the above formula I am counting how many times the plus (+) symbol appears in the cells in column A and then adding the value of 1 to the total and this is calculating correctly.

The below example shows the correct count of characters in column A utilising the above formula:


Column A - DataCount
1+2+2.4+2+65
1+2+3+44
1+4+7+6.5+7.86+36

<tbody>
</tbody>
Now I want to expand the formula to include an additional character. This would be the minus (-) symbol.

I need the formula to count how many times either the plus (+) or minus (-) symbol appear in a cell in column A and add these two counts together and then add an additional value of 1.

The below example shows the desired total count of characters in column A:


Column A - DataCount
5+4+5+3.0-65
8-3+6-3-15
9+4+2-2-2-16

<tbody>
</tbody>

Is there any way to expand my existing formula to count more than one character (i.e. the plus (+) and minus (-) symbols together)?

Any assistance in this regard would be greatly appreciated.

Best Regards,
Jay




 
Re: How to count the number of specific characters in a cell

Fluff
Perfect. Works exactly as i wanted and thanks very much for the solution
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Re: How to count the number of specific characters in a cell

Another option that is independent of the expected number of leading dots or the length of the text would be a user-defined function.
To implement ..
1. Right click the sheet name tab and choose "View Code".
2. In the Visual Basic window use the menu to Insert|Module
3. Copy and Paste the code below into the main right hand pane that opens at step 2.
4. Close the Visual Basic window.
5. Enter the formula as shown in the screen shot below and copy down.
6. Your workbook will need to be saved as a macro-enabled workbook (*.xlsm)

Code:
Function Dots(s As String) As Long
  Dim i As Long

  For i = 1 To Len(s)
    Select Case Asc(Mid(s, i, 1))
      Case 46: Dots = Dots + 1
      Case 133: Dots = Dots + 3
      Case Else: Exit Function
    End Select
  Next i
End Function

Excel Workbook
EF
1Item NameCount
2. Part 11
3Part 20
4.. Part 32
5 Part 43
6Part 50
7Part 60
8. Part 71
9.. Part 82
10.. Part 95
11. Bonnet1
12.. Cover piece 1 @ 22.5mm2
13... Cover piece with attachment 22.5cm x 12.75cm3
14...k9
15..P2.32
16..2
Leading Dots
 
Upvote 0
Re: How to count the number of specific characters in a cell

Here is an array-entered** formula whose only requirement is that there will never be more than 99 leading dots...

=MIN(IF(MID(SUBSTITUTE(A2,CHAR(133),REPT(".",3))&REPT(" ",99),ROW($1:$99),1)<>".",ROW($1:$99)))-1

**Commit this formula using CTRL+SHIFT+ENTER instead of Enter by itself


If you wish to go with a User Defined Function (as suggested by Peter in Message #12 ), here is another one that you can consider...
Code:
[table="width: 500"]
[tr]
	[td]Function Dots(S As String) As Long
  Dots = Len(Replace(S, Chr(133), "   ")) - Len(LTrim(Replace(Replace(Replace(S, " ", "x"), ".", " "), Chr(133), "   ")))
End Function[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
assuming there will always be a space after the periods...
=FIND(" ",SUBSTITUTE(A1,CHAR(133),"XXX"))-1
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,483
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top