keeping a sum array static

C

cmattmills

I would like to create a SUM function that goes from A1:A10 (for example) and
does not expand or contract as I add or remove cells within the array.
Currently if I insert a cell, the function will change to A1:A11 which I do
not want. Ideas?
 
B

Bob Phillips

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

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
R

Ron Coderre

Try something like this:

=SUM(INDIRECT("a1:a10"))

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
C

cmattmills

Thank you all for responding so quickly! It works, and now I can get on with
MY work!
 
Top