简体   繁体   中英

Excel: Summation formula, from a value in a cell, to a value in another cell

I have the following summation formula :

http://imagizer.imageshack.us/v2/150x100q90/674/QKWX9O.png

In text:

SUM (k*1.07^n), n=c1 to n=c2

k , c1 and c2 are 3 single numbers, specified in respective individual cells.

k is a constant, but c1 and c2 should be dynamically changeable.

Is that possible to do in Excel, and if so, how?


I know it's a fairly simple mathematical concept so I'd be surprised if Excel couldn't do it, but I haven't been able to find the formula myself. I've tried SUM and SUMIF , but from what I understand, that requires me to fill a whole range of cells each time I want to calculate something. I've also found some suggestions to use arrays in Excel, which I understand is automatically filling cells - which is at least a little more automated - but I'd rather not fill extra cells, if it's possible.

As a sidenote, I read Excel's accuracy is bad in high digit numbers, but as long as the first 5 digits are correct, it'll be accurate enough for my purpose.

With k , c 1 , and c 2 in A1, B1 and C1 respectively, use the following formula:

=A1*SUMPRODUCT(1.07^ROW(INDIRECT(B1&":"&C1)))

Regards

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM