I have a form that is driven by the following query. I would like to be able to edit one column (VehiclesInvestigations.RecoveredStolen) and change it from no to yes (it is a Y/N checkbox format). When I try and do that it beeps and will not change the box. Do I have something out of order? There are 2 tables I'm drawing information from.
SELECT VehiclesInvestigations.VehIDNum, VehiclesInvestigations.InvestigationNumber, VehiclesInvestigations.RecoveredStolen, Vehicles.VehYear, Vehicles.VehMake, Vehicles.VehModel, Vehicles.VehPrimaryColor, Vehicles.VehLicenseNumber
FROM VehiclesInvestigations INNER JOIN Vehicles ON VehiclesInvestigations.VehIDNum = Vehicles.VehIDNum
thank you for your help
SELECT VehiclesInvestigations.VehIDNum, VehiclesInvestigations.InvestigationNumber, VehiclesInvestigations.RecoveredStolen, Vehicles.VehYear, Vehicles.VehMake, Vehicles.VehModel, Vehicles.VehPrimaryColor, Vehicles.VehLicenseNumber
FROM VehiclesInvestigations INNER JOIN Vehicles ON VehiclesInvestigations.VehIDNum = Vehicles.VehIDNum
thank you for your help