RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================
I need this formula to also count negative numbers
=COUNTIF(D429,"<>0") will count anything not zero (empty cells, text,
booleans, errors, etc). It also behaves strangely on sheets where the last
row ever used is <29.
To count only positive or negative numbers, use
=COUNTIF(D429,">0")+COUNTIF(D429,"<0")