Trying to count occurrences

roscoe

Well-known Member
Joined
Jun 4, 2002
Messages
1,046
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I have a spreadsheet where I am tracking volunteers for an event. Everywhere I need a volunteer, I put a placeholder of "()" (no quotes). As I get a volunteer, I put the name between the parenthesis.

I need a way to count the number of occurrences of (). The problem is that some cells have more than one. I tried =COUNTIF($B$2:$Q$31,"*()*") but it appears to give me the number of cells that contain the string, not the total number of occurrences.

Ideas?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try...

=SUMPRODUCT(LEN($B$2:$Q$31)-LEN(SUBSTITUTE($B$2:$Q$31,"()","")))/2
 
Upvote 0
Perfect!!

...now can you explain how? I can't figure out what's going on.
 
Upvote 0
Let's say that A2 contains the following text value...

Code:
Some text (), some other text ()

LEN(A2) returns 32, which represents the number of characters within the text string.

SUBSTITUTE(A2,"()","") returns "Some text , some other text ", which represents the text value that remains after each instance of "()" has been removed.

LEN(SUBSTITUTE(A2,"()","")) returns 28, which represents the number of characters that remain after each instance of "()" has been removed.

LEN(A2)-LEN(SUBSTITUTE(A2,"()","")) returns 4, which represents the number of characters removed. In effect, it tells us the number of times "(" and ")" occurs.

The number 4 is then divided by 2, since there are two characters in "()", and returns 2, which represents the number of times "()" occurs.

In the SUMPRODUCT formula, this evaluation process takes place for each cell in the given range. To see how the formula is evaluated by Excel, select the cell containing the formula, and then select...

Formula > Evaluate Formula

...and click on 'Evaluate'.
 
Upvote 0
Wow...thanks for that detailed explanation. Very clever use of the substitution command. I'll definitely have to remember that one.
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,783
Members
448,992
Latest member
prabhuk279

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