If there is something in a cell - I want it to summen it!

  • Thread starter Thread starter baiaz66
  • Start date Start date
B

baiaz66

I have a excel sheet where some of the cell is filled with letters.

I want to have a cell that tells me how many cells have something in
it.

How do I do this?
 
You could try

COUNTIF(Range,<>"")

This will tell you how many cells are not empty

HTH

E
 
I have a excel sheet where some of the cell is filled with letters.

I want to have a cell that tells me how many cells have something in
it.

How do I do this?

=COUNTA(A1:A17
 
If it is just a question of getting the count of non-blank cells, then you
could use the count function.
=Count("A1:J60")
This would give you the count of non-blank cells in the Range("A1:J60").
 

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