I currently have two spilled ranges of data starting in row 3 of column AH and AH as shown:
I wanted to determine the Average and Standard Deviation in scores for each reviewer in the spilled ranges. I created a list of Unique Reviewers (column AK) using the UNIQUE function that returned a spilled range in row 3, as expected. I then was able to use the AVERAGEIFS function to create the average score (column AL) for each unique reviewer, returning a spilled range using:
=AVERAGEIFS($AH$3#,$AG$3#,AK3#)
My challenge now is doing the same to calculate the Standard Deviation for each unique reviewer (Column AM). I was able to simply use the following and manually drag down into each row of column AM for this:
=STDEV(FILTER($AH$3#,AK3=$AG$3#))
but, this is not a spilled range and requires me to manually adjust the column length if there are any changes in the spilled range size of the other columns.
My Question: Is there a single formula I can use in cell AM3 that will result in a spilled range result of standard deviation for each unique reviewer, similarly to the AVERAGEIFS function?
I wanted to determine the Average and Standard Deviation in scores for each reviewer in the spilled ranges. I created a list of Unique Reviewers (column AK) using the UNIQUE function that returned a spilled range in row 3, as expected. I then was able to use the AVERAGEIFS function to create the average score (column AL) for each unique reviewer, returning a spilled range using:
=AVERAGEIFS($AH$3#,$AG$3#,AK3#)
My challenge now is doing the same to calculate the Standard Deviation for each unique reviewer (Column AM). I was able to simply use the following and manually drag down into each row of column AM for this:
=STDEV(FILTER($AH$3#,AK3=$AG$3#))
but, this is not a spilled range and requires me to manually adjust the column length if there are any changes in the spilled range size of the other columns.
My Question: Is there a single formula I can use in cell AM3 that will result in a spilled range result of standard deviation for each unique reviewer, similarly to the AVERAGEIFS function?