Hi All,
The specific Month is March.
The specific Numeric Value is 51
A numeric value will appear only once in a Row
Input cell for criteria Numeric Value (will vary)
Input cell for criteria Month (will vary)
Expected Result:
The correct Summed Count for Numeric Value 51 Paired /Doulble Repeats
Consecutively in a Row is 3.
Each paired consecutive Row appearance is a count of 1 (one)
References 9 and 10 = a count of 1
References 11 and 12 = a count of 1
References 17 and 18 = a count of 1
Thanks
Sam
>Hi All,
>
[quoted text clipped - 54 lines]
>Thanks
>Sam
Assuming that A1:H19 contains your data, let J1 contain the month number
of interest, such as 3 for the month of March, and let K1 contain the
numeric value of interest, such as 51, then try...
I1:
=IF(MONTH(B1)=J1,IF(ISNUMBER(MATCH(K1,C1:H1,0)),1,0),0)
I2, copied down:
=IF(MONTH(B2)=$J$1,IF(ISNUMBER(MATCH($K$1,C2:H2,0)),IF(I1<2,I1+1,1),0),0)
K1:
=COUNTIF(I1:I19,2)
Hope this helps!
> Hi All,
>
[quoted text clipped - 54 lines]
> Thanks
> Sam