If statement or something better?

shestheceo

New Member
Joined
Sep 22, 2023
Messages
2
Office Version
  1. 2016
Platform
  1. Windows
I have monthly figures (actuals) by month and I can't figure out the best formula to do the following:

Create a monthly forecast assuming a 1% annual increase in units and a 3% annual increase in costs starting in April.

I started with an If statement but it's getting a bit long... any better formula ideas?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Are you increases one-time annual increases, or allocated monthly (i.e., 1/12% per month for units and 1/4% per month costs)?
 
Upvote 0
There are several ways to do forecasting. From what you've described, you could simply use your increase figures to forecast a month based on units/cost of 12 months prior. So your October 2023 forecast will be (October 2022 units x 1.00083) and (October 2022 cost x 1.0025). So you simply apply your increase percentage year-over-year.

But to give you a formula that would work for your file I would have to see how your data is set up. Unfortunately you cannot attach a file here but do you have access to a cloud service (Google Docs, Dropbox, etc.) where you could share a link to a sample file? Also the site provides an Excel add-in to copy a range and paste it into a post.

Another way is to smooth out the actuals using a rolling average instead of just one months of actuals.

Another way is to determine a trend line for the actual data and project that into the future linearly. If your business is seasonal, then that would have to be taken into account.

Here is an example using my first method.

$scratch.xlsm
ABCDEFGHIJKLMNOPQ
1ActualsForecast
29/1/202210/1/202211/1/202212/1/20221/1/20232/1/20233/1/20234/1/20235/1/20236/1/20237/1/20238/1/20239/1/202310/1/202311/1/202312/1/2023
3Units 13,509 13,866 13,148 13,292 11,523 13,248 10,312 14,001 13,901 10,551 13,220 10,445 13,321 13,878 13,159 13,303
4Costs $193,448.88 $196,758.54 $156,987.12 $157,908.96 $149,914.23 $183,749.76 $139,830.72 $198,674.19 $179,044.88 $144,021.15 $186,798.60 $129,622.45 $169,043.49 $197,250.44 $157,379.59 $158,303.73
5
6Escalation
7AnnualMonthly
81%0.083%
93%0.250%
Monthly
Cell Formulas
RangeFormula
C2:Q2C2=EOMONTH(B2,0)+1
O3:Q3O3=C3*(1+$B$8)
O4:Q4O4=C4*(1+$B$9)
B8:B9B8=A8/12
 
Upvote 0

Forum statistics

Threads
1,215,104
Messages
6,123,113
Members
449,096
Latest member
provoking

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