Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Can you create recursion within a single cell in Excel?

I'm trying to calculate compound interest, and I'd like to be able to do it without creating a new cell for each iteration. Is there a way to take the answer of a formula and plug it right back in for a set number of times?

2 Answers

Relevance
  • 1 decade ago
    Favorite Answer

    I don't know how you can do recursion within a particular cell in Excel. However, there is a formula that you can use to calculate compound interest:

    =PV * (1 + R)^N

    Where PV is the beginning (present) value on which the interest will be paid, R is the interest rate per period (as a decimal, like 0.02 for 2%), and N is the number of periods. So if you have the beginning value in cell A1, the interest rate in cell B1, and the number of periods in cell C1, your formula would be:

    =A1 * (1 + B1)^C1

    If you only want to see the actual interest earned (not the total ending value at the end of the timeframe), you would then subtract the PV:

    =(A1 * (1 + B1)^C1) - A1

    I hope that helps!

  • Anonymous
    1 decade ago

    never heard of recursion within a single cell

    most likely need to use Visual Basic

Still have questions? Get your answers by asking now.