I'm trying to derive Compound Interest Formula
$100 is given 1% interest per month
I can manually work this by hand (and Excel)
See how the formula just expands?
How to create simple formula such that person can find total interest paid at a given time?
If you start with $P$ and the interest rate is $r$ each period compounding over $n$ periods then you should end up with $$P\times (1+r)^n$$
So as an example in Excel with $P=100$ and $r=1\%$ and $n=12$ you can write this as
=100*(1+1%)^12which should give you about $112.682503013197$.Subtract $100$ from this to show you have $12.682503013197$ more than you started with, essentially the same result as your calculation.