T
tandoorfalafel
I have an array of values (A1:An) and depending on what data is entered
in other cells, I only want to use a subset of the array (Ax:Ay) in
several functions that take an array as an argument.
Example:
A1 3
A2 5
A3 9
A4 4
A5 6
A6 3
A7 =AVERAGE(A2:A5) .......... 6
A8 =ADDRESS(A10,1,1,1,"Worksheet") .......... "$A$2"
A9 =ADDRESS(A11,1,1,1,"Worksheet") .......... "$A$5"
A10 2
A11 5
Is there some way to use the cell references to cells A2 and A5 derived
from the functions in A8 and A9 in the function in cell A7? This
function returns an error:
=AVERAGE(A8:A9)
I'm looking for a function, f(x), such that...
=AVERAGE(f(A8):f(A8))
will return 6. Any ideas?
in other cells, I only want to use a subset of the array (Ax:Ay) in
several functions that take an array as an argument.
Example:
A1 3
A2 5
A3 9
A4 4
A5 6
A6 3
A7 =AVERAGE(A2:A5) .......... 6
A8 =ADDRESS(A10,1,1,1,"Worksheet") .......... "$A$2"
A9 =ADDRESS(A11,1,1,1,"Worksheet") .......... "$A$5"
A10 2
A11 5
Is there some way to use the cell references to cells A2 and A5 derived
from the functions in A8 and A9 in the function in cell A7? This
function returns an error:
=AVERAGE(A8:A9)
I'm looking for a function, f(x), such that...
=AVERAGE(f(A8):f(A8))
will return 6. Any ideas?