I am trying to figure out the best formula for calculating recurring revenue over a period of time. For example:
I charge $10 a month for a subscription services. Every month I get an extra client. What is the simplest formula for calculating this scenario?
For a 12 month period:
10 + 20 + 30 + 40 + 50 + 60 + 70 + 80 + 90 + 100 + 110 + 120 = 780
Here is a formula that works but I don't really understand it and am not sure if it is the best way to achieve the desired result.
N * ((N+1) * X/2 )
12*((12+1) * 10/2) = 780