Hi,
The query will work so long as the syntax is correct. You will need to put a
on error
clause in to trap the error you will get if it returns zero records. I use
this
On Error GoTo ErrorChecker:
ErrorChecker:
' EOF Error
If Err = 3021 Then
rsADO.Close
** Do Something **
End If
Else
MsgBox (Err & "Error")
Stop
End If
> Hi
> I try to use this qurey
[quoted text clipped - 13 lines]
>
> *** Sent via Developersdex http://www.developersdex.com ***