need help with a formula

L

LJ

I have a column that data will be entered in and I need to have a cell that
will increase numerically with the number of cells that have a number in it
in the column. for example there are five cells with data. the summary cell
should say 5 when I enter another cell of data the summary cell should change
to 6
 
L

Lars-Åke Aspelin

I have a column that data will be entered in and I need to have a cell that
will increase numerically with the number of cells that have a number in it
in the column. for example there are five cells with data. the summary cell
should say 5 when I enter another cell of data the summary cell should change
to 6

Have a look at the COUNT() and COUNTA() formulas.

Hope this helps / Lars-Åke
 
E

Eduardo

Hi,
in excel 2007 if the data is in column A

=COUNT(A:A)

If you don't have excel 2007 use

=COUNT(A1:A1000)

If this was helpful please say yes. thank you
 
R

Ron Rosenfeld

I have a column that data will be entered in and I need to have a cell that
will increase numerically with the number of cells that have a number in it
in the column. for example there are five cells with data. the summary cell
should say 5 when I enter another cell of data the summary cell should change
to 6

If the data is numeric:

=count(a:a)

If the data is textual:

=counta(a:a)

(Substitute your column to test for the a:a).
--ron
 

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