I am trying to calculate the average for a few columns and rows but I have came across the following issue. Some rows might not have data for a particular column, but it seems these are still taken into account when calculating the avg for this column which means the data is way off. I'd like my formula to ignore a data point (if not present) when calculating the average for the column.
Here is my formula :
table ABC* | stats avg(ABC_*)
So if I have something like :
Column : ABC_1 | ABC_2 | ABC_3 | ABC_4 | ABC_5
1 2 1 2 2
2 2 1
1 2 3
The average for column ABC_2, ABC_4 and ABC_5 is incorrect.
... View more