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:
- In the worksheet, select the dates in the list.
- On the Format menu, click Cells.
- On the Number tab, click Custom in the Category list.
- Type a new date format in the Type box (for example, MM/dd/yyyy), and then click OK.
- 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"