Exponentially increasing Weekly Goal % where the sum at the end of the year equals 100%

kevsvette

New Member
Joined
Oct 5, 2015
Messages
24
This has been bugging me for some time now.

How do you calculate a exponentially increasing Weekly Goal %, over a 52 week year, that sums to 100% at the end of the year.

I don't have a particular starting point... just know the sum of the 52 week percentages has to equal 100%.

This % is used to calculate the weekly goal to meet the annual goal at year end. Lets say the annual goal is 10,000. You can't divide that by 52 weeks it needs to exponentially increase due to the type of work that were dealing with.

I unfortunately cannot add any attachments. Any help will be appreciated.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
I think you're mixing up some terminology, and your overall goal isn't clear. But let's say your starting weekly goal is x, and each week the goal must increase by y percent, and at the end of 52 weeks you want the sum of the weekly goals to be 10,000. This leads to an equation with 2 unknowns (x and y), so therefore results in an infinity of possible answers. You can set something up like this however:

ABCD
142.944970.0510000
245.09221
347.34682
449.71417
552.19987
654.80987
757.55036
860.42788
963.44927
1066.62174
1169.95282
1273.45046
1377.12299
1480.97914
1585.02809
1689.2795
1793.74347
1898.43065
19103.3522
20108.5198
21113.9458
22119.6431
23125.6252
24131.9065
25138.5018
26145.4269
27152.6982
28160.3332
29168.3498
30176.7673
31185.6057
32194.8859
33204.6302
34214.8618
35225.6048
36236.8851
37248.7293
38261.1658
39274.2241
40287.9353
41302.3321
42317.4487
43333.3211
44349.9872
45367.4865
46385.8609
47405.1539
48425.4116
49446.6822
50469.0163
51492.4671
52517.0904

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet2

Worksheet Formulas
CellFormula
C1=SUM(A1:A52)
A2=A1*(1+B$1)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



Put a guess for your first week goal in A1, then put the A2 formula in and drag down to A52. Put a guess for the percentage in B1, and put in the C1 formula. Now go to the Data tab > What-if Analysis > Goal Seek. Set Cell: C1, To value: 10000, By changing cell: A1. This will tell you what the starting point must be, given the percentage in B1. Or pick your starting point in A1, and run Goal Seek again, but by changing cell B1. This will give you the percentage to grow by given your starting point.

But this is still a guess as to what you want. This is geometric growth, not exponential. And with a 5% growth rate, this requires a goal of 43 in week 1, and a goal of 517 in week 52. Does the capacity really grow that much in a year? Perhaps if you could provide a few more details about what you want, we could come up with something.
 
Upvote 0
How do you calculate a exponentially increasing Weekly Goal %, over a 52 week year, that sums to 100% at the end of the year.

The compounded weekly percentage is =(1+100%)^(1/52) - 1. That evaluates to about 1.34189906987003% (+3.99E-17, to be precise).

just know the sum of the 52 week percentages has to equal 100%.

With the compounded rate above, the product -- that is, (1+weeklyRate)^52 - 1 -- is 100%, not the "sum" [sic].

If you want the sum to be 100%, you would be talking about a simple weekly rate of 100%/52.

But you say: ``You can't divide that by 52 weeks it needs to exponentially increase``

So I do not believe you do not want the "sum" per se to be 100%.

I don't have a particular starting point [....] Lets say the annual goal is 10,000

With an ending balance of 10,000, the beginning balance is =PV(B1, 52, 0, -10000) in B2, where B1 is the compounded weekly rate.

That evaluates to about 4999.99999999999 (-9.09E-13, to be precise).

Then the weekly balances can be determined as follows.

ABCD
1weekly rate1.341899%addition
2beg bal5,000.00
3week 15,067.0967.09
4week 25,135.0968.00
5week 35,204.0068.91





52week 509,736.93128.93
53week 519,867.59130.66
54week 5210,000.00132.41
555,000.00total

<tbody>
</tbody>
Code:
Formulas:
B1:  =(1+100%)^(1/52) - 1
B2:  =PV(B1,52,0,-10000)
B3:  =B2*(1+$B$1)
C3:  =B3-B2
C55: =SUM(C3:C54)
Copy B3:C3 into B4:C54

Note that the sum of the weekly additions is 100% of the beginning balance.

Note: The values shown in the tables are rounded, but the calculations are not.
 
Last edited:
Upvote 0
On second thought, I agree with EricW: your description is unclear.

How do you calculate a exponentially increasing Weekly Goal %, over a 52 week year, that sums to 100% at the end of the year.

If you mean ``given an annual yield of some rate, what is the compounded weekly rate?``, you can use:

= (1 + annualRate)^(1/52) - 1

I don't have a particular starting point [....] This % is used to calculate the weekly goal to meet the annual goal at year end. Lets say the annual goal is 10,000.

If you mean that given the compounded weekly rate calculated above, you want to determine the fixed weekly amount that, when added to a beginning balance, results in 10,000, you can determine the weekly amount as follows:

=PMT(weeklyRate, 52, begBalance, -10000)

where begBalance is zero or some positive amount.
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,935
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top