Answer

K

Kevin

For those of you interested, the problem was me trying to
warp SQL syntax. What was required was an additional join
on the lookup table so that the correpsonding three
records were available in the record in the result query.
The following works fine :

UPDATE Clarifications INNER JOIN (tblIssues INNER JOIN
tblClar_Status_to_Issue_Status ON
tblClar_Status_to_Issue_Status.Issue_Status =
tblIssues.Status) ON Clarifications.[Issue No] =
tblIssues.Issue_ID SET Clarifications.[CLAR STATUS] =
tblClar_Status_to_Issue_Status.Clarification_Status;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top