The first query is the record source in question. I ran it and couldn't
update it. The second query does allow me to udate and add new. I don't see
what the difference is other than the tables and fields. What do you think?
Thanks, Robert
SELECT tblOPmeds.fldOPmedNo, tblOPmeds.fldPINo, tblOPmeds.fldOPmedLUno,
tblOPmeds.fldDose, tblOPmeds.fldUnits, tblOPmeds.fldRoute,
tblOPmeds.fldFrequency, tblOPmeds.fldStartDate, tblOPmeds.fldStopDate,
tblOPmeds.fldReasonStoped, tblOPmedsLU.fldClassification,
tblOPmedsLU.fldBRAND_NAME, tblOPmedsLU.fldGENERIC_NAME
FROM tblOPmedsLU INNER JOIN tblOPmeds ON tblOPmedsLU.fldOPMedsLUno =
tblOPmeds.fldOPmedLUno;
*********************************************************
SELECT tblDevices.fldPtDeviceNo, tblDevices.fldVisitNo,
tblDevices.fldDeviceNo, tblDeviceLU.fldDefibDeviceModName,
tblDeviceLU.fldDefibDeviceModNum, tblDevices.fldMode, tblDevices.fldRate,
tblDevices.fldReasonInterr, tblDevices.fldAthresh, tblDevices.fldApw,
tblDevices.fldLVthresh, tblDevices.fldLVpw, tblDevices.fldVentThresh,
tblDevices.fldVentPW, tblDevices.fldAimp, tblDevices.fldRVimp,
tblDevices.fldLVimp, tblDevices.fldHVBimp, tblDevices.fldHVX,
tblDevices.fldPwaveSens, tblDevices.fldRwaveSens, tblDevices.fldVpacePercent,
tblDevices.fldApacePercent, tblDevices.fldMDnote, tblDevices.Changes,
tblDeviceLU.fldManufactureID, tblDevices.fldSerialNo
FROM tblDevices INNER JOIN tblDeviceLU ON tblDevices.fldDeviceNo =
tblDeviceLU.fldDeviceNo;