Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, I have an array called Runer which I redim(1 to 5, 1 to idex),
Idex bieng the number of times I count through certain scenarios. I then use: j = 1 For x = (UBound(Runner, 2) - (LowAve - 1)) To UBound(Runner, 2) low(j) = Runner(1, x) j = j + 1 Next x this value (LowAve - 1) is the number of values I wish to average. This works perfect, it takes the last 'x' values (15 here) in the Runner array, column 1, and puts then into low(array). Im then using Average = Application.WorksheetFunction.Average(low) to get the Average. My question, is it possible to to do this directly with the runner array and avoid tranfering the data to low array. Possibly ending up with something like Average = Application.WorksheetFunction.Average(Runner(the last 15 values in col 1)). Regards Robert |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Working with ranges in arrays... or an introduction to arrays | Excel Programming | |||
Arrays - declaration, adding values to arrays and calculation | Excel Programming | |||
Averaging best 15 out of 20? | Excel Discussion (Misc queries) | |||
VBA - averaging the difference of 2 arrays, ignoring blanks | Excel Programming | |||
averaging specific rows in multiple arrays | Excel Worksheet Functions |