I'm trying to take an average of the "Average" column depending on what the month in the "Date" column is.
I'm trying =AVERAGEIF(Table1[Average],MONTH(Table1[Date]=1)) and it's giving me DIV/0 error.
Any ideas on how to fix it or a better approach?
Date | Trial 1 | Trial 2 | Trial 3 | Average |
---|---|---|---|---|
1/12/2023 | 100 | 101 | 102 | =mean(B2:D2) = 101 |
1/13/2023 | 103 | 104 | 105 | =mean(B3:D3) = 103 |
2/12/2023 | 106 | 107 | 108 | =mean(B4:D4) = 105 |
I'm trying =AVERAGEIF(Table1[Average],MONTH(Table1[Date]=1)) and it's giving me DIV/0 error.
Any ideas on how to fix it or a better approach?