Hey,
If the cboArrivalDate is a Date/Time variable, you must enclose it not in
single quotation makrs but in number signs (strArrival = "=#" &
Me.cboArrivalDate.Value & "#"). Otherwise, if it is a text or an unbound
control, you need to call CDate() on it.
By the way, in the If IsNull(Me.cboArrivalDate.Value) Then case, I'd rather
not apply a filter at all.
HTH
Chris
> Greetings,
>
[quoted text clipped - 34 lines]
> End With
> End Sub
Scott B - 15 Jul 2005 23:20 GMT
Chris,
Thanks, that's it. I knew I needed to define it as a date, but I didn't
know where to put the #s.
Scott B
> Hey,
>
[quoted text clipped - 52 lines]
>> End With
>> End Sub