Counting individual numbers in a range of cells with multiple numbers per cell

themeekclan

New Member
Joined
Jun 29, 2017
Messages
2
I'm looking for help to figure out how to count how many times a number occurs in a range of cells where there are multiple numbers per cell.

For example, if the range I'm searching has 351, 123, 240, 95, 28 and 111 located in multiple cells (not in any single column or row), how do I count how many one's, two's, three's, etc there are.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
using helpers A1=351 B1=3 C1=5 D1=1 then have 10 more columns counting the 1's, 2's etc in E1 to N1
 
Upvote 0
Welcome to Mr Excel

You can try something like this

A
B
C
D
E
F
G
1
Concatenation​
Number​
Count​
2
351​
3512402812395111​
1​
5​
3
123​
2​
3​
4
240​
3​
2​
5
95​
4​
1​
6
28​
5​
2​
7
111​
6​
0​
8
7​
0​
9
8​
1​
10
9​
1​

Formula in E2
=A2&A4&A6&C3&C5&C7

Formula in G2 copied down
=LEN($E$2)-LEN(SUBSTITUTE($E$2,F2,""))

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,216,231
Messages
6,129,631
Members
449,522
Latest member
natalia188

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