Excel Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What's the formula for adding different cells from the same column? Ex.
a5+a22+a100
 
Les

In an unused cell type =A5+A22+A100 and hit the <ENTER> key.

If those cells have numbers, you will get an answer.

OR you could use =SUM(A5+A22+a100) which ignores cells that are not numbers.

i.e. A5 = 123, A22 = 123, A100 = "les"

The SUM function would return 246

=A5+A22+A100 would throw an error.


Gord Dibben Excel MVP
 
=a5+a22+a100
if the cells are not contiguous.
or
=sum(a5,a22,a100)

=sum(a5:a100)
if you wanted all those cells summed.
 

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