Counting a Column

J

Jamakinmecrazy

Hi,
I have tried using autosum to count the number of claims I have in 1 column
and it says 0 even when I have 55 claims in the column.
I have even tried entering =COUNT(A4:A55) and it still doesn't work.

If anyone can help I would greatly appreciate it.
 
M

Mike H

Hi,

Are you sure these are really numbers in column A and not text that looks
like numbers. Try this in another columns and drag down for numbers it should
evaluate as TRUE

=isnumber(A4)

If you get FALSE put a 1 in a cell and copy it. Select your 'numbers' in
column A and then

Edit|Paste Special and slect Multiply.
OK

Now try your formula again.

Mike
 
L

Lars-Åke Aspelin

Hi,
I have tried using autosum to count the number of claims I have in 1 column
and it says 0 even when I have 55 claims in the column.
I have even tried entering =COUNT(A4:A55) and it still doesn't work.

If anyone can help I would greatly appreciate it.

Your claims are probably formatted as text.
Try the COUNTA function.
=COUNTA(A4:A55)

Hope this helps / Lars-Åke
 
S

Shane Devenshire

Hi,

COUNT counts the number of numbers in a range
COUNTA counts the number of non-empty cells in a range

You can also use COUNTIF or COUNTIFS (if you are using 2007)
=COUNTIF(A4:A55,"<>")
 
S

Shane Devenshire

Hi excelent,

I don't believe that will work. What it does is count numbers plus blanks
spaces.
 
S

Shane Devenshire

Hi,

I also forgot to ask how do you get 55 claims on rows A4:A55, that is only
52 rows? What else is going on that we need to know about?

By the way if every row has a claim then you could use

=ROWS(A4:A55)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top