G
Guest
How do I average all the numbers in a column but only the positive numbers in
that column?
that column?
How do I average all the numbers in a column but only the
positive numbers in that column?
By the way, how do you enter an arrayed function...or what does that
mean exactly? Is it just a formula that, after you enter into the Fx bar,
you hit ctrl+shft+enter instead of just enter?
Yes, that is what we mean by "commit" with ctrl+shift+Enter.
An array formula is one that operates on an array of values. In the
example, if A1,A3,A5,etc (all odd rows) are positive, then:
=average(if(A1:A20>=0, A1:A20))
But we cannot enter an array of that form.
[....]
To verify that it is an array formula, select the cell and
be sure that the entire formula after "=" is enclosed in
curly braces (i.e. ={...}).