countif cell contains a specific number

ivanastaylor

New Member
Joined
Apr 22, 2003
Messages
1
I have data that has more than one number in a cell - separated by a comma. i.e. 23,2

I want to count how many times 2 occurs either alone in a cell or as part of a cell that contains a 2 separated by a comma.

I've tried
=countif(range, 2)
=countif(range, *2*)

and didn't get anywhere - any assistance?
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the board :biggrin:

Maybe:

=SUMPRODUCT(--ISNUMBER(FIND(",2",range)))

Regards
Jon
 
Upvote 0
How about:
=COUNTIF(A:A,"**,2")
 
Upvote 0
...but I don't think either of those will count a single 2 in a cell....if range is A1:A10 try

=SUMPRODUCT(--ISNUMBER(FIND(",2,",","&A1:A10&",")))
 
Upvote 0
I have data that has more than one number in a cell - separated by a comma. i.e. 23,2

I want to count how many times 2 occurs either alone in a cell or as part of a cell that contains a 2 separated by a comma.

I've tried
=countif(range, 2)
=countif(range, *2*)

and didn't get anywhere - any assistance?

C2: 2

A2:A4, the range of interest.

D2:

=SUMPRODUCT(LEN(","&$A$2:$A$4&",")-LEN(SUBSTITUTE(","&$A$2:$A$4&",",","&C2&",","")))/(LEN(C2)+2)
 
Upvote 0
Hi Aladin et Barry

I notice that this works but I don't understand why. What is the purpose of the "," ?

Jon
 
Upvote 0

Forum statistics

Threads
1,213,561
Messages
6,114,316
Members
448,564
Latest member
ED38

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