M
mark grizzle
In the Name column's criteria field, enter
Cdate(Mid([Name],9,9)) between #7/1/2003# and #7/31/2003#
I'm assuming the Expr1 column is derived from the Name
column. By using the method above, you save your query
some extra work. The CDate function also forces Access to
recognize the value as a date. Lastly, the Mid function
is returning 9 characters from the Name column, beginning
with the 9th character.
Cdate(Mid([Name],9,9)) between #7/1/2003# and #7/31/2003#
I'm assuming the Expr1 column is derived from the Name
column. By using the method above, you save your query
some extra work. The CDate function also forces Access to
recognize the value as a date. Lastly, the Mid function
is returning 9 characters from the Name column, beginning
with the 9th character.