+ Reply to Thread
Results 1 to 4 of 4

How does the Forecast function work

Hybrid View

  1. #1
    Registered User
    Join Date
    05-29-2008
    Posts
    14

    How does the Forecast function work

    Hi,

    How does the forecast function actually work (not the syntax)? Like how is it calculated? the reason I'm asking is because I need to implement something like the forecast function in Access and I need to know how it is calculated.


    Thanks

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    http://exceltips.vitalnews.com/Pages..._Function.html

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    It's a linear regression -- the exact algorithm is shown in Help. If you wanted reassurance, you could do it in formulas and verify:
           -A- ---B--- C -D-- ---E--- -----------------------------------F-----------------------------------
       1    x     y                   Formulas                                                               
       2    1   10.27                                                                                        
       3    2   20.14    xAvg   5.50  E3: = AVERAGE(x)                                                       
       4    3   30.12    yAvg  55.45  E4: = AVERAGE(y)                                                       
       5    4   40.73       b  10.02  E5: = SUMPRODUCT( (x - xAvg) * (y - yAvg) ) / SUMPRODUCT( (x - xAvg)^2)
       6    5   50.63       a   0.34  E6: = yAvg - b * xAvg                                                  
       7    6   60.93                                                                                        
       8    7   70.82                                                                                        
       9    8   80.25                                                                                        
      10    9   90.11                                                                                        
      11   10  100.50                                                                                        
      12                  14  140.61  E12: = a + b * D12                                                     
      13                  14  140.61  E13: = FORECAST(D13, y, x)
    Last edited by shg; 08-10-2008 at 06:20 PM.

  4. #4
    Registered User
    Join Date
    01-21-2012
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    41

    Re: How does the Forecast function work

    Here's the short tutorial about forecast function: Forecast function

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1