How would I work out the average of a range where it has to meet two requirements.
In the example below, I would like to calculate the average 'Score' of all of the 'Type 1' results that are within August 2022.
How would I work out the average of a range where it has to meet two requirements.
In the example below, I would like to calculate the average 'Score' of all of the 'Type 1' results that are within August 2022.
try:
=AVERAGE(FILTER(C:C; YEAR(A:A)=2022; MONTH(A:A)=8; B:B="Type 1"))
or even AVERAGEIFS
can be used
To look like this
Try this, or see Example
=IFERROR(AVERAGE(FILTER(E2:E, YEAR(B2:B)=2022, MONTH(B2:B)=8, C2:C="Type 1",D2:D=F5 )),0)
To get Unique Names in cell
I2
=UNIQUE(D2:D)