I am trying to use the title selected in one text box to limit the query that populates another text box.
This is my simplistic attempt at it:
Can anyone point me in the right direction.
Thanks in advance.
Rich
This is my simplistic attempt at it:
Code:
SELECT COPY.CopyKey, COPY.CopyId, TITLE.Title, TITLE.Edition
FROM COPY INNER JOIN TITLE ON COPY,FK_ISBN=TITLE.PK_ISBN
WHERE(((COIP.CopyKey)Not In
(SELECT FK_CopyKey Form ISSUES_to_STUDENT WHERE DateIn Is NULL)))
AND TITLE.Title=[forms]![3__ISSUES_to_Student]![TitleList]
'The last is the simplistic part.
Can anyone point me in the right direction.
Thanks in advance.
Rich