Can I compute an average only if values are numbers?
I have a column with some numbers that, for some reasons, might be “”. I want to compute the average for those values, “grouped” by date (might be unordered) but only if those are actual values. I want to skip the “”.
| A | B |
| 2020-01-01 | 5 |
| 2020-01-01 | 4 |
| 2020-01-02 | 8 |
| 2020-01-04 | "" |
| 2020-01-05 | 42 |
| 2020-01-08 | 2 |
| 2020-01-10 | 20 |
I’m currently doing =IF(ISNUMBER(A2),ROUND(AVERAGEIF(B:B,"<="&A2,B:B),0),"") but I would like to add a condition on B, inside the AVERAGEIFS, something like ISNUMBER(B2),B:B.
It doesn’t work. Is it possible? How?