Hello All. I'm trying to create a dynamic LINEST() function. Currently, if I take the Linest from January 2012 - June 2012, I'll get the stats. However, I need to create a formula which will incorporate number for July when that cell gets update, and so on and so forth.21 Jan-12 0.237526814
22 Feb-12 0.228978729
23 Mar-12 0.230876595
24 Apr-12 0.244510957
25 May-12 0.268560542
26 Jun-12 0.292142458
27 Jul-12 0.292142458
28 Aug-12 0.292142458
29 Sep-12 0.292142458
30 Oct-12 0.292142458
31 Nov-12 0.292142458
32 Dec-12 0.292142458
Column A is the X, Column C is the Y... Column C are calculated numbers from another sheet in excel file I'm working on
I think its going to need an ADDRESS LOOKUP nested in the LINEST function...The address lookup should give a cell reference of $C$6....something like this?
=LINEST(C1:ADDRESS(LOOKUP),IF(C1:ADDRESS(LOOKUP),A1:A12),TRUE,TRUE)
Bookmarks