I have the following query that does not update:
UPDATE TblPAQ3280 SET TblPAQ3280.InitialInspectionTT = [IntialInspectionTO]-[IntialInspectionTI]
WHERE (((TblPAQ3280.SerialNumber)=[Enter Serial Number]));
What I am trying to do is get the value of the record IntialInspectionTO and subtract it from the record IntialInspectionTI and place that value in IntialInspectionTT by the serial number
UPDATE TblPAQ3280 SET TblPAQ3280.InitialInspectionTT = [IntialInspectionTO]-[IntialInspectionTI]
WHERE (((TblPAQ3280.SerialNumber)=[Enter Serial Number]));
What I am trying to do is get the value of the record IntialInspectionTO and subtract it from the record IntialInspectionTI and place that value in IntialInspectionTT by the serial number