If something like:
=STDEV(A1:A26)
is coming out negative, please post the input data.
--
Gary''s Student - gsnu200909
Obviously, the standard deviation is larger than the mean due to the large
number of zero values. Take the most extreme case of 14 zero values and one
value of 100. The mean is 6.667 (100/15) and the standard deviation is 25.82,
giving you -19.15 for mean minus one standard deviation.
If you are looking for a different result, maybe you want to exclude zero
values. For standard deviation and mean, respectively, use something like these
array formulas (commit with CTRL+SHIFT+ENTER):
=STDEV(IF(A1:A15<>0,A1:A15))
=AVERAGE(IF(A1:A15<>0,A1:A15))
That would be fascinating, but I don't think it's possible. I believe he meant
that "mean minus one standard deviation" was negative.