indicate a number of rows to sum

D

donna-LexusWebs

I would like to create a list of numbers (ie: from A2:A25). Then have a field
that a user can put in a number to indicate the number of rows to sum into a
third field. Ie: input the number 3 to cell C1. The sum of cells A2:A4 would
be returned into the result field, say, cell C3.

Assume that A2 will always be the first number in the sum equation. If the
value in C1 were changed to 4, the result in C3 would be 19 since it would
include the number in the range. See sample below. Any clues??

A B C D
1 3
2 6
3 9 16
4 1
5 3
6 7
7 4
 
B

Biff

Hi!

Try this:

=IF(C1="","",SUM(A2:INDEX(A2:A25,C1)))

If C1 is empty then the entire range would be summed. That's why I test for
C1 being empty.

Biff
 
D

donna-LexusWebs

Perfect, thank you!

Biff said:
Hi!

Try this:

=IF(C1="","",SUM(A2:INDEX(A2:A25,C1)))

If C1 is empty then the entire range would be summed. That's why I test for
C1 being empty.

Biff
 

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