summing a volitile number of cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got a row of numbers A2:K2. I want a formula that will sum from A2 to
the number of cells I enter in A1.

So if I enter "3" in cell A1, the formula will sum from A2 to C2.
and if I enter "5" in cell A1, it will sum from A2 to E2.

I've been fiddling around in R1C1 but not getting it to work...
 
One way

=SUM(A2:INDEX(A2:K2,A1))

it's non volatile as opposed to OFFSET and INDIRECT

Regards,

Peo Sjoblom
 
Thanks Chip, I was cruising your web site when you for answers when you
responded in person.
THX
 
A non-volatile alternative for you

=SUM(A2:INDEX(2:2,A1))

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
Back
Top