J JohnB Jun 3, 2004 #1 I need to get a count of dates that fall in between for example A2 an A12. ie. If A2:A12>38133 and a2:12<38138 Thanks for the hel
I need to get a count of dates that fall in between for example A2 an A12. ie. If A2:A12>38133 and a2:12<38138 Thanks for the hel
P Peo Sjoblom Jun 3, 2004 #2 =COUNTIF(A1:A12,">"&DATE(2004,5,26))-COUNTIF(A1:A12,"<"&DATE(2004,5,31)) -- For everyone's benefit keep the discussion in the newsgroup. Regards, Peo Sjoblom
=COUNTIF(A1:A12,">"&DATE(2004,5,26))-COUNTIF(A1:A12,"<"&DATE(2004,5,31)) -- For everyone's benefit keep the discussion in the newsgroup. Regards, Peo Sjoblom
D Don Guillett Jun 3, 2004 #3 try =sumproduct((a2:a12>38133)*(a2:a12<38138)) or =sumproduct((a2:a12>b1)*(a2:a12<b2))
R Ron Rosenfeld Jun 3, 2004 #4 I need to get a count of dates that fall in between for example A2 and A12. ie. If A2:A12>38133 and a2:12<38138 Thanks for the help Click to expand... =COUNTIF(A2:A12,">="&DATE(2004,5,26)) - COUNTIF(A2:A12,">"&DATE(2004,5,31)) --ron
I need to get a count of dates that fall in between for example A2 and A12. ie. If A2:A12>38133 and a2:12<38138 Thanks for the help Click to expand... =COUNTIF(A2:A12,">="&DATE(2004,5,26)) - COUNTIF(A2:A12,">"&DATE(2004,5,31)) --ron