Count the times a number appears in a column

  • Thread starter Thread starter Paul R
  • Start date Start date
P

Paul R

I would to find out how I can lookup a column and count the number of times
a preticular number appears innthat column.

Thanks
Paul
 
Countif works if you want to count the # of "1" in a range that contains
1,11,111 and return the value 1.

if not, you want to count times that a character (number) occured, look for
the recent message in this group called "counting text" started by "stavrou"
which contains a formula to count all occurences.
 
Paul,

Use the COUNTIF function

=COUNTIF(A1:A100,1)

where
A1:A100 is the range of numbers
and
1 is the particular number you are trying to count.

Regards,
Scott
 
Back
Top