Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT tblRec.*, [PropertyId] & [docNum] & [ItemNum] AS PriKey
FROM tblRec;
SELECT tblShip.*, [PropertyId] & [docNum] & [ItemNum] AS PriKey
FROM tblShip;
SELECT DISTINCTROW [qryRecPriKey].[PropertyID], [qryRecPriKey].[docNum], [qryRecPriKey].[ItemNum], [qryRecPriKey].[Desc], [qryRecPriKey].[PriKey]
FROM qryRecPriKey LEFT JOIN qryShipPriKey ON [qryRecPriKey].[PriKey] = [qryShipPriKey].[PriKey]
WHERE ([qryShipPriKey].[PriKey] Is Null);