#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Sales Forecast


How to create a workbook that computes a sales forecast for the next
year assuming an increase in sales of 5 percent, list each month from
january through december with a total forecasst for each month and for
the year.


--
marquin
------------------------------------------------------------------------
marquin's Profile: http://www.officehelp.in/member.php?userid=4786
View this thread: http://www.officehelp.in/showthread.php?t=1238082

Posted from - http://www.officehelp.in

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 418
Default Sales Forecast

marquin wrote:
How to create a workbook that computes a sales forecast for the next
year assuming an increase in sales of 5 percent, list each month from
january through december with a total forecasst for each month and for
the year.


Do you mean that total sales increases 5% per year, and you want to
apply the monthly rate equally to each month (surprise!) so that you
get a 5% annual increase?

In that case, the monthly rate can be computed as (in A1, for example):

=rate(12, 0, -1, 1+5%)

See how to apply that rate below.

Or do you mean that you want a year-over-year increase of 5% applied to
each month?

In that case, put 5% into A1.

In either case, if B1:B12 are last year's sales figures for each month,
next year's sales forecast can be computed in C1:C12 as follows (using
C1as an example; copy down to C2:C12):

=B1*(1+$A$1)

The total forecast for the year is simply SUM(C1:C12). The annual
percentage increase of total sales is (formatted as Percentage):

=sum(C1:C12) / sum(B1:B12) - 1

Or do you mean something else altogether? What?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 418
Default Sales Forecast

Errata....

I wrote:
Do you mean that total sales increases 5% per year, and you want to
apply the monthly rate equally to each month (surprise!) so that you
get a 5% annual increase?
In that case, the monthly rate can be computed as (in A1, for example):
=rate(12, 0, -1, 1+5%)


On second thought, that does not result in a 5% annual increase. It is
nonsense in this context. Sorry.

Or do you mean that you want a year-over-year increase of 5% applied to
each month?


That results in a total 5% annual increase.

The total forecast for the year is simply SUM(C1:C12).


..... Which is all you wanted.

The annual
percentage increase of total sales is (formatted as Percentage):
=sum(C1:C12) / sum(B1:B12) - 1


This is necessary only if you want to account for any anomaly caused by
rounding.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
combine sales forecast from multiple representatives kcip Excel Discussion (Misc queries) 1 August 22nd 06 06:41 PM
compare forecast to actual sales made, scorecard Joe@GSI Excel Discussion (Misc queries) 0 June 8th 06 01:40 PM
How do I set up a sales forecast to predict sales per hour, when . Greg Excel Discussion (Misc queries) 4 April 17th 05 11:09 PM
projected sales forecast broken down into an hourly rate not linea Greg Excel Discussion (Misc queries) 0 April 17th 05 09:57 PM
Best way to forecast individual sales territories? Bill_S Excel Discussion (Misc queries) 0 February 3rd 05 02:29 PM


All times are GMT +1. The time now is 01:45 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"