formula to sum all sum calculations in a column

G

Guest

Is there a way to add up all the =sum() formula's in a column and ignoring
all other calculations?

Here is what I have

=b4-c4
=b5-c5
=b6-c6
_____
=sum(d2:d5)


=b8-b8
=b9-c9
_____
=sum(d6:d8)

This goes on a hundred times and I want to add all the sums without having
to enter +d7+d10+etc.. I can't use the data grouping function because it
scares the user to see it and the number of rows used will fluctuate. Is
there a way to do this?

TIA
Todd
 
F

Frank Kabel

Hi
depends if you somehow can identify these vells. e.g. do they have a
label in another column or are they always at specific cell positions
 
J

JulieD

Hi Todd

if you do a search & replace to replace =SUM(
with
=SUBTOTAL(9,
you can then use
=subtotal(9,the_full_range)
function at the bottom to add up all the ranges excluding the other
subtotals

alternatively, you could just sum the whole lot & divide by 2 ???

Cheers
JulieD
 

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