![]() |
count
I need to know how to count the number of times a specific number appears
within a range. ie. cell A:1 thru A:1000 - how many times was the number 3 entered. Disregard all other numbers that may of been entered. |
Try...
=COUNTIF(A1:A1000,3) Hope this helps! In article , Alex C <Alex wrote: I need to know how to count the number of times a specific number appears within a range. ie. cell A:1 thru A:1000 - how many times was the number 3 entered. Disregard all other numbers that may of been entered. |
|
If a cell could have more than 1 occurrence of 3, and you want to count all,
then use =SUMPRODUCT(--(LEN(A1:A1000)-LEN(SUBSTITUTE(A1:A1000,"3","")))) -- HTH Bob Phillips "Alex C" <Alex wrote in message ... I need to know how to count the number of times a specific number appears within a range. ie. cell A:1 thru A:1000 - how many times was the number 3 entered. Disregard all other numbers that may of been entered. |
You could also place a subtotal function using the count option two cells
below the range, then place a filter on the range. This way, you can quickly get the count of 3's, then 5's, 7's, etc., without having to re-write the countif function constantly. First, in cell A1002 - =subtotal(2,a1:a1000) Then, highlight A1:A1000 and select Data/Filter/AutoFilter. Use the filter box to select the value that you want to count and the subtotal function will automatically count it. "Alex C" wrote: I need to know how to count the number of times a specific number appears within a range. ie. cell A:1 thru A:1000 - how many times was the number 3 entered. Disregard all other numbers that may of been entered. |
All times are GMT +1. The time now is 10:28 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com