Joe,
Oh cool, I didn't realize Excel had built-in SLOPE, INTERCEPT, and
FORECAST functions, I was calculating them with VBA, slope = (y2 - y1)
/ (x2 - x1) and intercept =m(x - x1) + y1
Thanks for your time and help.
On Fri, 1 Jul 2011 12:39:20 -0700, "joeu2004" <(E-Mail Removed)>
wrote:
>"Curbie" <(E-Mail Removed)>:
>> I'm trying to calculate some steps or stages for
>> a graph and am having trouble, basically I'm trying
>> to calculate a line between a point x,y to a point
>> on a line between x1,y1 and x2,y2
>
>If X1:X2 contains 1 and 8 (x1 and x2) and Y1:Y2 contains 1 and 6 (y1 and
>y2), you can compute:
>
>Z1: =SLOPE(Y1:Y2,X1:X2)
>Z2: =INTERCEPT(Y1:Y2,X1:X2
>
>Then for any X (in X3), the corresponding Y is:
>
>=Z1*X3+Z2
>
>Or more simply:
>
>=FORECAST(X3,Y1:Y2,X1:X2)
|