Share via

Excel - have two date columns Start dt and Finish dt how to filter data in a between a date range?

Lorna C 20 Reputation points
2025-09-26T16:39:08.2233333+00:00

I need to help w/Excel. Trying to figure out how to filter data that has two date columns where the filter is a date range. my worksheet - see example below - has the following columns with TWO date type fields: Start DateFinish DateHow do I create a Filter or something to display only data that falls between the two dates: ex I want to filter/display only data rows that fall within a date range of: 9/1/2025 to 11/30/2025.

I need only data rows returned if the search criteria falls in between the 'Start Date' & 'Finish Date'

this will show management and business team members which Tasks (Task Names) are valid / being worked during the months of Sept, Oct and Nov.

example 'Task Name' 'Test Env window' should return in the filtered data set because the search criteria dates fall between it's Start and Finish dates. Hoping someone can help....

(the Search Criteria fields listed at top right have no formulas other than the two date entry fields have been formatted as 'date', they are just fields that I'm wanting to use for this filter formula.)

User's image

Microsoft 365 and Office | Excel | For home | Windows

Answer accepted by question author

Bernie Deitrick 490 Reputation points
2025-09-26T17:07:40.4933333+00:00

The logic is: the end filter date is >= project start date AND the start filter date is <= project end date.

To apply that, use a column of formulas, like

=AND($J$4>=I6,$I$4<=J6)

Where I4 is the start date, J4 is the end date, and row 6 ahs the start and end dates of your projects.

Then filter on TRUE for that column to show projects that overlap those dates.

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.