I have the below formula that Lookup the A1:A10
appropriated Score Number.
{=INDEX(Table1[ScoreNum],MATCH(A1:A10,Table1[ScoreWord],0))}
I need calculate the AVERAGE result of this entire array.
But when using this:
{=AVERAGE(INDEX(Table1[ScoreNum],MATCH(A1:A10,Table1[ScoreWord],0)))}
Returns the first looked up result with Index/Match, against returns the average of all returnable values whit this array formula.
How can do that?
Sheet1
Sheet2: Table1
Note: The formula in B11
is: =AVERAGE(B1:B10)
and returns the true value. I need return this without using the B
helper column, directly in a single cell (A11
) with the true form of formula shows in the picture.
Very truly yours.
A14
and returns the first lookup value (The appropriated Score value of theA3
) – mgae2mA14:A17
) it returns the several lookedup values. – mgae2m