I have a column of data that I want to find the average for. But I have the following two conditions for the cell to be included in the average: (1) it is a number and not an error and (2) the number is in a row where a specified cell has certain text. So I want something like this:
=AVERAGEIFS(T2:T67,T2:T67,"<>""#VALUE!",I2:I67,"pre-LEV")
I want to average the range t2:t67, but first make sure there are no errors in each cell and that the cell is in a row where "pre-LEV" exists.
Thanks!
=AVERAGEIFS(T2:T67,T2:T67,"<>""#VALUE!",I2:I67,"pre-LEV")
I want to average the range t2:t67, but first make sure there are no errors in each cell and that the cell is in a row where "pre-LEV" exists.
Thanks!