=sum

  • Thread starter Thread starter gma
  • Start date Start date
G

gma

how do you "=sum(A1:A5+A10:A20)" of serveral rows or columns, skip serveral
rows or columns and contuine with the formula
 
Some other variations...

=sum(a1:a5)+sum(a10:a20)
or
=sum(a1:a20)-sum(a6:a9)

You may find it easier to add an indicator column:

I used column B with an X in it if it should be summed:
=sumif(b1:b20,"X",a1:a20)

If you used X to indicate that the cell should be skipped:
=SUMIF(B1:B20,"<>"&"X",A1:A20)
 

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

Similar Threads

multipule calculations in a single column 2
Sum number range ignoring numbers formatted as text 0
SUM Char 9
Copy/Fill increments 8
Formula assistance 4
Formula help? 2
Formula help 2
Bug in Excel? 2

Back
Top