Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Using " Forecast" financial function

The excel help in this subject is not very good for novices.
Question:
Jan 5000
Feb 7500
Mar 10000
etc.

How do I use "forecast" or what is the syntax for projecting future sales
for the following 3 months?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Using " Forecast" financial function

The growth appears linear, so

Apr 12500
May 15000
--
Gary''s Student - gsnu200741


"Artm" wrote:

The excel help in this subject is not very good for novices.
Question:
Jan 5000
Feb 7500
Mar 10000
etc.

How do I use "forecast" or what is the syntax for projecting future sales
for the following 3 months?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default Using " Forecast" financial function

On Aug 31, 1:44 pm, Artm wrote:
The excel help in this subject is not very good for novices.


And non-novices alike, especially given the lack of context for the
example.

Question:
Jan 5000
Feb 7500
Mar 10000
etc.
How do I use "forecast" or what is the syntax for projecting
future sales for the following 3 months?


I'll give you a quick answer -- probably what you need. Then I'll
discuss some finer points.

For your example, I am going to assume that you want to treat each
month as equal. Assume that the month names are in A1:A3 and the
quantities are in B1:B3. To forecast Apr (4th month), enter the
following into B4 and copy down:

=forecast(row()-row($A$1)+1, $B$1:$B$3, row($A$1:$A$3))

If you think of how you might graph the data, the month names would be
plotted along the X axis ("known_X"), and the corresponding values in
column B would be plotted along the Y axis ("known_Y"). The first
argument of FORECAST() ("X") is the X-axis data point for you want to
compute the Y-axis value.

The problem is: FORECAST() does not treat text labels as the ordinals
1, 2 3, etc (or 0, 1, 2 etc). That is the purpose of row($A$1:$A$3)
above. Alteratively, you could create a parallel column (optionally
hidden) that contains the ordinal corresponding to the month. This
would be useful if you had gaps in your chronology; for example, if
you had Jan, Mar and Jun [sic; purposely not May] instead of Jan, Feb
and Apr.

You might consider replacing "Jan", "Feb" et al with real dates (e.g.
1/1/2007, 2/1/2007, etc) and formatting with the Custom format "mmm".
However, in that case, months are not treated as equal; FORECAST()
will use the actual number of days between dates. To see the
difference, make the change in column A and change the formula in B4
to:

=forecast(A4, $B$1:$B$3, $A$1:$A$3)

For most people, that is not the answer they intended.

Please note that FORECAST() assumes that the growth is linear
(straight-line). That is obviously the right answer in your example.
But in general, it would be advisable to graph the known data first to
be sure that you agree that the growth is linear. If it is not, do
not use FORECAST().

HTH.

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
Text "comparison" operator for "contains" used in an "IF" Function Pawaso Excel Worksheet Functions 4 April 4th 23 11:35 AM
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
HELP on "left","right","find","len","substitute" functions serene83 Excel Discussion (Misc queries) 5 June 27th 06 02:23 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
inserting a conditional "go to" command on a excel "if" function velasques Excel Worksheet Functions 5 March 10th 06 08:16 PM


All times are GMT +1. The time now is 02:59 PM.

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

About Us

"It's about Microsoft Excel"