Conditional Range w/Sum

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

Guest

Ok..I've been trying to bang out a formula that will essentially do a sum on
a variable range within a certain column--Column A. The range will be
determined by a value in another column--Column B. Example: If the value in
cell B1 is between 1-2, the formula sums cells A1 and A2 and returns the
value to, say, cell C2. Any advice on how to set up this kind of variable
range (for lack of a better term) within a formula would be greatly
appreciated.
 
Look at the OFFSET function

Something like

=SUM(OFFSET(A1,0,0,ROUNDUP(B1)))

Maybe

PC
 
In C2, you could use the formula:

=SUM(INDIRECT("A1:A" & B1))

So if B1 were 3, you would get the sum from A1:A3.

HTH,
Bernie
MS Excel MVP
 

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

Back
Top