Sum or Count using set range

G

Guest

I would like to do a sum or count formula between a specific range for column
totals. If I use for eg sum(A2:A10) or Sum(A2:$A$10) they are both affected
when a row is inserted and the 10 is now changed to 11.
Is there a formula that can be used so in A1 I have my start row value as 2
and B1 my end row value as 10, then build a Sum or Count formula as:
=Sum or =Count(A&Value(A1):A&Value(B1)) ??
 
G

Guest

one option is OFFSET(). With the #of rows to sum(not the ending cell) in B1

=SUM(OFFSET(A2,0,0,B1,1))
 
G

Guest

One way is to use the INDIRECT function, which ignores inserts, copy/pastes,
etc:

=SUM(INDIRECT("A2:A10"))
 

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