How to count number of cells dated this week? or next week?
Solved/Closed
doublewitt
doublewitt
- Posts
- 14
- Registration date
- Sunday April 27, 2014
- Status
- Member
- Last seen
- September 29, 2014
doublewitt
- Posts
- 14
- Registration date
- Sunday April 27, 2014
- Status
- Member
- Last seen
- September 29, 2014
Related:
- How to count number of cells dated this week? or next week?
- Text String count within a Cell ✓ - Forum - Office Software
- Count number of cells matching to criteria ✓ - Forum - Excel
- Count only if cell contains number - Forum - Excel
- Count conditionally formatted cells in excel 2007 - Forum - Excel
- It restricts what values are possible for cells that contain numbers, dates, and text ✓ - Forum - Excel
2 replies
venkat1926
May 19, 2014 at 12:15 AM
- Posts
- 1864
- Registration date
- Sunday June 14, 2009
- Status
- Contributor
- Last seen
- August 7, 2021
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
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
doublewitt
May 19, 2014 at 10:48 AM
- 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...!