DashboardNovice
Member
I am receiving a #VALUE! error. Here is my formula:
=AVERAGE(I11&":"&"I"&SUM(ROW(I11),(Sheet5!M5-1)))
With respect to the second cell in the range it will begin with column I, but I want the row value to be able to adjust based on the value entered on Sheet5, cell M5.
When I step through with the formula evaluator, first cell I11 is being evaluated and turning into a number, then the remainder evaluates as a cell reference which is what I want. So I am ending up with AVERAGE("112.07:I15").
I guess my problem is that I have to find a way to ensure that the first cell, i.e. I11 doesn't evaluate into a number. Is that it?
I suspect that the correct solution could involve the use of the ADDRESS or INDIRECT function, which I would like to avoid if I can.
=AVERAGE(I11&":"&"I"&SUM(ROW(I11),(Sheet5!M5-1)))
With respect to the second cell in the range it will begin with column I, but I want the row value to be able to adjust based on the value entered on Sheet5, cell M5.
When I step through with the formula evaluator, first cell I11 is being evaluated and turning into a number, then the remainder evaluates as a cell reference which is what I want. So I am ending up with AVERAGE("112.07:I15").
I guess my problem is that I have to find a way to ensure that the first cell, i.e. I11 doesn't evaluate into a number. Is that it?
I suspect that the correct solution could involve the use of the ADDRESS or INDIRECT function, which I would like to avoid if I can.