Can someone tell me the proper code for putting a "Where" clause onto this:
Dim md As DAO.Recordset
Set md = CurrentDb.OpenRecordset("MDQuarantineShipmentID")
I would like the dataset to include only those records Where MDQuarantineShipmentID!ShipmentID = Me!ShipmentID. And ShipmentID is an Integer.
Dim md As DAO.Recordset
Set md = CurrentDb.OpenRecordset("MDQuarantineShipmentID")
I would like the dataset to include only those records Where MDQuarantineShipmentID!ShipmentID = Me!ShipmentID. And ShipmentID is an Integer.