L
LaurieTuff via AccessMonster.com
XP and Access 2002
Public SelectDate as Date
If SelectDate is 14/10/2009 the following works but if SelectDate is
4/10/2009 (any single digit day of month) the report fails
Me.Filter = "[ResActivity Query].[ResidentID] = " & SelectRecord
Me.Filter = "((" & Me.Filter & ") and ([ResActivity Query].Date = #" &
SelectDate & "#))"
What am I doing wrong??
Public SelectDate as Date
If SelectDate is 14/10/2009 the following works but if SelectDate is
4/10/2009 (any single digit day of month) the report fails
Me.Filter = "[ResActivity Query].[ResidentID] = " & SelectRecord
Me.Filter = "((" & Me.Filter & ") and ([ResActivity Query].Date = #" &
SelectDate & "#))"
What am I doing wrong??