formula to count cells not blanK

P

pmarques

i need a formula to count cells of collum D, that aren't blank
sorry i'm a beginner


Thanks
 
H

Hugh

Use the COUNTA function. See the Help file


Counta:
Counts the number of cells that are not empty and the values within the
list of arguments. Use COUNTA to count the number of cells that contain
data in a range or array.
 
G

Guest

It depends on whether you want cells with a "" response to be counted or not
(they look blank, but have a formula in them)
"" counted try =counta(D:D)
"" not counted try =65536-Countblank(D:D)
 
B

Bryan Hessey

There is a CountBlank function, and each sheet has 65536 rows, so
=65536-CountBlank(D:D)
should work for you
 

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