Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL2000: Recorded AutoFilter Macro Does Not Filter Dates That Meet Criteria


View products that this article applies to.

Symptoms

When you run a recorded Microsoft Visual Basic for Applications macro (Sub procedure) that performs an AutoFilter, dates that meet the criteria are not filtered.

↑ Back to the top


Cause

This behavior occurs when you perform the following steps:
  1. You configure the regional settings in the operating system to display the short date format in any format other than the default setting.
  2. You type dates in one or more cells in a workbook, including the day, month, and year, with hyphen (-) or slash mark (/) separators, and you do not specify a specific date format.
  3. You record a macro by using the AutoFilter command.
  4. You select a date for part of the AutoFilter criteria.
  5. You run the recorded macro.

↑ Back to the top


Workaround

To work around this behavior, use either of the following methods:
  • Change the date format of the recorded macro to the default short date format of the operating system.

    -or-

  • Format the dates in the worksheet and recorded code with a custom date format.

Method 1: Change the Date Format of the Recorded Code

Change the value that is assigned to the Criteria1 argument or the Criteria2 argument of the AutoFilter method to match the default short date format of the operating system.

For example, in Microsoft Windows 95, Microsoft Windows 98, or Microsoft Windows NT 4.0, if the line of code is the following
Selection.AutoFilter Field:=1, Criteria1:="2/2/98"
				
and the cell that contains the date in the AutoFilter list is formatted as "m/d/yyyy", change the line of code to the following:
Selection.AutoFilter Field:=1, Criteria1:="2/2/1998"
				

Method 2: Change the Date Format of the Code and Worksheet Cells

Change the format of the dates to a different custom date format, and change the value assigned to the Criteria1 argument or the Criteria2 argument of the AutoFilter method to match the same custom date format. Follow these steps to perform the task:
  1. In the worksheet, select the dates in the list.
  2. On the Format menu, click Cells.
  3. On the Number tab, click Custom in the Category list.
  4. Type a new date format in the Type box (for example, MM/dd/yyyy), and then click OK.
  5. Change the value assigned to the Criteria1 argument or the Criteria2 argument of the AutoFilter method to match the date format of the dates in the worksheet list.

    For example, if the cells are formatted as MM/dd/yyyy, the line of code is the following:
    Selection.AutoFilter Field:=1, Criteria1:="02/02/1998"
    					

↑ Back to the top


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

↑ Back to the top


More information

In Microsoft Windows 95, Microsoft Windows 98, and Microsoft Windows NT 4.0, the default short date format is "M/d/yy".

In Microsoft Windows 2000, the default short date format is "M/d/yyyy".

↑ Back to the top


References

For additional information about other issues with dates in AutoFilters and recorded macros, click the article number below to view the article in the Microsoft Knowledge Base:
248235 XL2000: Recorded AutoFilter Macro Does Not Filter Dates Incorrectly

↑ Back to the top


Keywords: KB248669, kbpending, kbbug

↑ Back to the top

Article Info
Article ID : 248669
Revision : 6
Created on : 10/11/2006
Published on : 10/11/2006
Exists online : False
Views : 229