Hi,
I have data in the following range (B359:B406), I need to count the number of times a 0 might occur but only in the cells B361,B364,B367,B370 (every 3rd row) finishing with B406.
I have tried
but it only returns 0 no matter how many of the cells I'm looking at have a 0 in them.
Any help would be most appreciated.
J
I have data in the following range (B359:B406), I need to count the number of times a 0 might occur but only in the cells B361,B364,B367,B370 (every 3rd row) finishing with B406.
I have tried
Code:
=SUMPRODUCT(--(MOD(ROW(B359:B406)-ROW(B361),3)=0),--(B359:B406="0"))
but it only returns 0 no matter how many of the cells I'm looking at have a 0 in them.
Any help would be most appreciated.
J