How to filter dates between two specific dates in Excel?
Sometime you may only want to filter data or records between two specific dates in Excel. For example, you want to show the sales records between 9/1/2012 and 11/30/2012 together in Excel with hiding other records. This article focuses on ways to filter dates between two specific dates in Excel easily.
Filter dates between two specific dates with Filter command
Filter dates between two specific dates with VBA code
Select all dates between two specific dates with Kutools for Excel
Filter dates between two specific dates with Filter command
Supposing you have following report, and now you want to filter the items between 9/1/2012 and 11/30/2012 so that you can quickly summarize some information. See screenshots:
![]() |
![]() |
![]() |
Microsoft Excel's Filter command supports to filter all dates between two dates with following steps:
Step 1: Select the date column, Column C in the case. And click Data > Filter, see screenshot:
Step 2: Click the arrow button besides the title of Column C. And move mouse over the Date Filters, and select the Between item in the right list, see the following screenshot:
Step 3: In the Popping up Custom AutoFilter dialog box, specify the two dates that you will filter by. See the following steps:
Step 4: Click OK. Now it filters the Date column between the two specific dates, and hides other records as the following screenshot shows:
Filter dates between two specific dates with VBA code
The following short VBA code also can help you to filter the dates between two specific dates, please do as this:
Step 1: Input the two specific dates in the blank cells. In this case, I enter start date 9/1/2012 in cell E1, and enter end date 11/30/2012 in cell E2.
Step 2: Then hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
Step 3: Click Insert > Module, and paste the following code in the Module Window.
Public Sub MyFilter()
Dim lngStart As Long, lngEnd As Long
lngStart = Range("E1").Value 'assume this is the start date
lngEnd = Range("E2").Value 'assume this is the end date
Range("C1:C13").AutoFilter field:=1, _
Criteria1:=">=" & lngStart, _
Operator:=xlAnd, _
Criteria2:="<=" & lngEnd
End Sub
Note:
- In the above code, lngStart = Range("E1"), E1 is the start date in your worksheet, and lngEnd = Range("E2"), E2 is the end date that you have specified.
- Range("C1:C13"), the range C1:C13 is the date column that you want to filter.
- All above codes are variables, you can change them as your need.
Step 4: Then press F5 key to run this code, and the records between 9/1/2012 and 11/30/2012 have been filtered.
Select all dates between two specific dates with Kutools for Excel
In this section, we recommend you the Select Specific Cells utility of Kutools for Excel. With this utility, you can easily select all rows between two specific dates in a certain range, and then move or copy these rows to another place in your workbook.
Before applying Kutools for Excel, please download and install it firstly.
1: Select the range that you will filter by two dates, and then click Kutools > Select > Select Specific Cells…
2: In the Select Specific Cells dialog box, specify the settings as below
- 1). Select Entire row option in the Selection type section.
- 2). In the Specific type section, please successively select Greater than or equal to and Less than or equal to in the two drop-down lists. Then enter the start date and end date into the following textboxes.
- 3). Click the OK button. See screenshot:
Now all rows which match the criterion have been selected. And then you can copy and paste the selected rows to a needed range as you need.
If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
Filter all dates between two specific dates with Kutools for Excel
Related articles:
- Select cells based on certain criteria
- Select cells with specific text
- Remove rows based on cell value
Best Office Productivity Tools
Supports Office/Excel 2007-2021 and 365 | Available in 44 Languages | Easy to Uninstall Completely
Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need Is Just A Click Away...
Supercharge Your Excel Skills: Experience Efficiency Like Never Before with Kutools for Excel (Full-Featured 30-Day Free Trial)
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day! (Full-Featured 30-Day Free Trial)










