Forum Discussion
Feargal
Nov 06, 2019Copper Contributor
How to create an indirect range reference
How do I create an indirect reference to a range for an average() or Max() function? So if I want to display the average value in a part of a column, but the part is changeable. Today I want ...
Twifoo
Nov 07, 2019Silver Contributor
OFFSET and INDIRECT are volatile. I prefer the non-volatile INDEX, like this:
=AVERAGE(INDEX(B:B,G1):INDEX(B:B,G2))
=AVERAGE(INDEX(B:B,G1):INDEX(B:B,G2))