G
Guest
I am trying to average a column of numbers. I want to only average the cells
that contain a number greater than 0. How do I do that?
that contain a number greater than 0. How do I do that?
bpeltzer said:I'll admit my bias against array formulas and offer an alternative...
Average is simply sum/count. So =sumif(range,">0")/countif(range,">0")
will
average the positive values.