Sum Function

  • Thread starter Thread starter Mike B
  • Start date Start date
M

Mike B

I want to add the contentens diplayed in a number of cells whick also contain
formulas. If I use the Sum funcion the result is '0' if I use the count
funtion all the cells are counted. How can I overcome this probles.

Thanks

Mike4
 
Hi,

=SUM(B1:B6)
If a sum formula like the above returns 0 then the chances are it's trying
to sum text

If you have one of your numbers you are trying to sum in (say) B1 try this
=ISNUMBER(B1)
If it's really a number it will return TRUE or FALSE for text

May be you could post your sum formula or the formula you are trying to sum
the result of.

Mike
 
Mike H said:
Hi,

=SUM(B1:B6)
If a sum formula like the above returns 0 then the chances are it's trying
to sum text

If you have one of your numbers you are trying to sum in (say) B1 try this
=ISNUMBER(B1)
If it's really a number it will return TRUE or FALSE for text

May be you could post your sum formula or the formula you are trying to sum
the result of.

Mike

Thanks
Problem sorted
 

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

Back
Top