In an array like this...
A B C 2 1 2 4 3 2 4 8 4 3 6 12 5 4 8 16 6 5 10 20
I am trying to sum and count numbers in every 2nd row.
I am using these ARRAY's...
=SUM(IF(MOD(A1:A6,2)=1,A1:C6,0))
works fine, gives 63
and then...
=COUNT(IF(MOD(A1:A6,2)=1,A1:C6,0))
doesnt work, gives 18
What gives, what am I missing?
Edit: It seems that it is doubling the count...6 rows using every 2nd row = 3 rows with 3 values in each = 9 numbers, not 18
Bookmarks