Thread: Trendlines
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Garf[_2_] Garf[_2_] is offline
external usenet poster
 
Posts: 13
Default Trendlines



"Jim Thomlinson" wrote:

One way would be to use the Slope and Intercept formula. You can get this
equation by right clicking your trend line and selecting Format TrendLine...
- Options tab - check Show Equation on Chart.

Here is a sample I did... In Cells A1:B13
Month Sales
Jan 500
Feb 400
Mar 600
Apr 400
May 500
Jun 400
Jul 300
Aug 400
Sep 500
Oct 400
Nov 300
Dec 200

Now use the Formula Slope and Intercept...
=SLOPE( B2:B13, {1,2,3,4,5,6,7,8,9,10,11,12})
-19.23
=INTERCEPT( B2:B13, {1,2,3,4,5,6,7,8,9,10,11,12})
=533.33

To get the end of the trend line do something like this...

=INTERCEPT( B2:B13, {1,2,3,4,5,6,7,8,9,10,11,12}) + SLOPE( B2:B13,
{1,2,3,4,5,6,7,8,9,10,11,12}) * 12
302.56
--
HTH...

Jim Thomlinson


"Garf" wrote:

I am doing a basic spreadsheet that has a linear trendline applied, how do i
show the end value of the forecasted trendline on the spreadsheet