How to count number of cells dated this week? or next week?

Solved/Closed
doublewitt Posts 14 Registration date Sunday April 27, 2014 Status Member Last seen September 29, 2014 - May 18, 2014 at 04:25 PM
doublewitt Posts 14 Registration date Sunday April 27, 2014 Status Member Last seen September 29, 2014 - May 19, 2014 at 10:48 AM
I've got lots of cells with dates. I want to know how many are THIS WEEK and NEXT WEEK. I'm not sure how to do it...

Help would be appreciated...

2 responses

venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 811
May 19, 2014 at 12:15 AM
suppose data from A1 to A21 is
date
15-May
16-May
17-May
18-May
19-May
20-May
21-May
22-May
23-May
24-May
25-May
26-May
27-May
28-May
29-May
30-May
31-May
1-Jun
2-Jun
3-Jun


use this formula

=COUNTIFS(A2:A21,">=5/18/14",A2:A21,"<6/1/14")

change the dates if necessary
in my regional configuration dates are entered as m/d/yy
0
doublewitt Posts 14 Registration date Sunday April 27, 2014 Status Member Last seen September 29, 2014
May 19, 2014 at 10:48 AM
Thanks, that works fine...!
0