M
Michelle
I the the following code...
SELECT
inmtinfo.IN_INMNUM,
inmtinfo.IN_NAME,
inmtinfo.IN_BLDING,
inmtinfo.IN_SECTION,
inmtinfo.IN_CELLDRM,
tblESSLog.SEP,
tblESSLog.EXERCISE,
tblESSLog.SHOWER,
tblESSLog.[YARD #],
tblESSLog.RAZOR,
tblESSLog.SCREAM,
tblESSLog.MIRROR,
tblESSLog.DATE
FROM inmtinfo LEFT JOIN tblESSLog ON inmtinfo.IN_INMNUM=tblESSLog.IN_INMNUM
WHERE (((inmtinfo.IN_BLDING)="H") And ((inmtinfo.IN_SECTION)=[ENTER POD]));
Problem is when I use this query in a form so that I can enter data into the
tblESSLog it just dings at me when I try to type any thing in.
SELECT
inmtinfo.IN_INMNUM,
inmtinfo.IN_NAME,
inmtinfo.IN_BLDING,
inmtinfo.IN_SECTION,
inmtinfo.IN_CELLDRM,
tblESSLog.SEP,
tblESSLog.EXERCISE,
tblESSLog.SHOWER,
tblESSLog.[YARD #],
tblESSLog.RAZOR,
tblESSLog.SCREAM,
tblESSLog.MIRROR,
tblESSLog.DATE
FROM inmtinfo LEFT JOIN tblESSLog ON inmtinfo.IN_INMNUM=tblESSLog.IN_INMNUM
WHERE (((inmtinfo.IN_BLDING)="H") And ((inmtinfo.IN_SECTION)=[ENTER POD]));
Problem is when I use this query in a form so that I can enter data into the
tblESSLog it just dings at me when I try to type any thing in.