Trend to Budget

EvansRJ

New Member
Joined
May 10, 2011
Messages
13
Office Version
  1. 2016
Platform
  1. Windows
Hi, Please help with what I think is a simple calculation

Cell C1 has monthly budget of 990 units
Cell C2 calculates daily rolling % to monthly budget
Cell C3 is the problem... I am trying to calculate rolling daily trend to budget

Cell A8-A38 has Days of month (May 1st-31st)
Cell C8-C38 has actual daily sales in units

I want C3 to populate with a % of what was sold to budget by day, adding each day...

990/31days = 32 units/day
May 1st budget = 32 Actual is 30. So my trend to budget % is 93.8%
May 2nd budget = 32 Actual is 28. So total rolling budget is now 64 for the 2 days and my actual is 58 so my trend to budget % is 90.6.

I want it to continue calculating the % from May 1 going forward adding each day.

Hope I explained the situation clearly enough.

Please help.

Thanks,
Ryan Evans
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
in cell D8, try this formula

=SUM($C$8:C8)/(COUNT($C$8:C8)*$C$1/COUNT($C$8:$C$38))

The first Sum gives the running total
the first count counts the days so far
C1 is your budget divided by the seconf count, the number of days in the period

Copy that formula down and that should solve it
 
Upvote 0
in cell D8, try this formula

=SUM($C$8:C8)/(COUNT($C$8:C8)*$C$1/COUNT($C$8:$C$38))

The first Sum gives the running total
the first count counts the days so far
C1 is your budget divided by the seconf count, the number of days in the period

Copy that formula down and that should solve it

Thanks for the info... it didn't exactly solve my problem but you gave me enough info to figure it out. Here is the formula that I ended up using.

=SUM(C8:C38)/((C2/(COUNT($A8:$A38)))*COUNT(C8:C38))
 
Upvote 0
The difference between my formula and yours is that mine will show you the trending percentage on a daily basis, where yours will only show you the trending percentage today.

Whatever works, happy to help
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
Members
452,902
Latest member
Knuddeluff

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