I want permit ID to be a drop down and the user to be able to slect from that selection or even fill in a Permit ID.
See settings: https://drive.google.com/file/d/1ijr...ew?usp=sharing
Code:
SELECT DISTINCT tblPermitInformation.PlantID, Plants.Cultivar AS Variety, Plants.Clone, tblPermitInformation.PermitID, tblPermitInformation.Import_Requestor, tblPermitInformation.Permit_No, tblPermitInformation.Permit_appl_date, tblPermitInformation.Permit_valid_until, tblPermitInformation.Authorization_application_date, tblPermitInformation.Authorization_no, tblPermitInformation.Authorization_valid_until, tblPermitInformation.Date_shipped, tblPermitInformation.Arrival_date, tblPermitInformation.Export_country, tblPermitInformation.Material_type, tblPermitInformation.Quantity_of_material, tblPermitInformation.Import_commentsFROM ((tblPermitInformation INNER JOIN Plants ON tblPermitInformation.PlantID = Plants.PlantID) LEFT JOIN tblExportInformation ON tblPermitInformation.PermitID = tblExportInformation.PermitID) INNER JOIN tblDocumentStorage ON tblPermitInformation.PermitID = tblDocumentStorage.PermitID
ORDER BY Plants.Cultivar, Plants.Clone;