Hi All,
Is it possible to filter 2 fields in Adodc?
My code is shown below:
*****-----*****-----
With Adodc2.Recordset
.Filter = "DOC_DATE = '" & myDate & "'"
If .EOF Then
MsgBox "Item Not found"
.Requery
End If
End With
*****-----*****-----
But I need to filter another field on top of that. Is it possible?
Regards,
B.H