hi - i know how to do this with vba, but is there a way to do it with a "regular" formula. So something like if c1 = 27 the formula would be sum (a&c1:a100) which would sum a27 to a100.
=if(c1=27,sum(a27:a100),"")
That was supposed to have been...INDIRECT is Volatile... if you do it this way, the formula will be non-Volatile:
=SUM(INDEX(A:A,27):A100)