How can i find an X value given a Y value?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can use the "forecast" formula to find a Y value given an X, but not the
other way around. please help! thanks
 
Can't you just reverse the order in which you give the second and third
arguments of the FORECAST() function?
In other words, instead of =FORECAST(x,known_y's,known_x's), use
=FORECAST(y,known_x's,known_y's) ?
 
jmi -

Behind the scenes, FORECAST uses the least-squares method for fitting a
simple linear function.

So, instead of using FORECAST, use the SLOPE and INTERCEPT worksheet
functions.

Since Y = Intercept + Slope*X, a little algebra indicates X = (Y -
Intercept)/Slope.

- Mike
http://www.mikemiddleton.com
 
Back
Top