Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm writing variant arrays to Linest with the code below
I'm taking a convoluted route by converting the array elapsedTime() to a Variant Array 'Xs' via a range 'DeltaT' I would prefer to use elapsedTime() more directly in Linest? Any advice will be appreciated Dim DeltaT as Range, DateTime as Range Dim elapsedTime(1 to 5), i as Integer Dim Xs as variant, Ys as Variant, output as variant Set DateTime = Range("myrng") ' 5 x 1 range For i = 1 To 5 elapsedTime(i) = DateTime(i) - DateTime(1) DeltaT(i) = elapsedTime(i) ' populate temporary range Next i Ys = Range("myData").value Xs = DeltaT.value ' transfer temporary range values to variant array output = WorksheetFunction.LinEst(Ys, Xs, , 1) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
LINEST using only some of the values in an array | Excel Worksheet Functions | |||
LINEST using only some of the values in an array | Excel Worksheet Functions | |||
LINEST using only some of the values in an array | Excel Worksheet Functions | |||
LINEST using only some of the values in an array | Excel Worksheet Functions | |||
LINEST using only some of the values in an array | Excel Worksheet Functions |