Bill has a data table with fifty columns and many, many rows. One of the columns contain a record date, with dates that range over the past three years. Bill asked if there was a way to create a filter criteria to display only those records with dates between 91 and 98 days ago.
One solution is to add a new column to your data table that indicates if the record date is in the desired timeframe. Assuming the record date is in column A, the following would work:
=AND(TODAY()-A2>=91,TODAY()-A2<=98)
The result is either a True or False value, depending on the record date. You could then set up the filtering based on the value of the new column. All you need to do is set up the filter so that only those records with a True in the column (those between 91 and 98 days old) would be displayed.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10997) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Filtering to a Date Range in the Past.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
Need to remove filters and display all rows and columns in all your worksheets? It is not easy to do manually, but with a ...
Discover MoreFiltering is a great asset when you need to get a handle on a subset of your data. Excel even makes it easy to copy the ...
Discover MoreThe filtering tools provided in Excel make it easy to filter a data list so that only certain rows are displayed. What if ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-10-03 16:29:28
Phil W
This works great, but I would go one step further to make the formulas more flexible. I would enter the 91 and 98 values into unused cells somewhere on the sheet, preferably not within the data rows. It can be unused cells in the header row, or insert a new row above the table, somewhere where they won't get filtered out in the data list.
For example, enter 91 in cell E1 and enter 98 cell G1.
Next, change the formula in Allen's tip to this:
=AND(TODAY()-A2>=$E$1,TODAY()-A2<=$G$1)
Copy and paste the formula down the new column as far as there are entries in the table.
Once the formulas are set up this way, you can simply change the Newest and Oldest values in cells E1 and G1 to change the date range without editing formulas. The only caveat is that if your list is filtered when you change the Newest and Oldest values, you will have to re-filter the list to refresh the filter with new values.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments