Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is look-up also look out? 1

Status
Not open for further replies.

kupe

Technical User
Sep 23, 2002
376
I can't get this nor variations to work in the access2K db -

UPDATE tblEmpTransReq
SET tblEmpTransReq.TransferRequest = tblEmployees.TransferRequest
WHERE tblEmpTransReq. DB_id = tblEmployees.DB_id;

Is the likely failure because tblEmpTransReq.TransferRequest is a look-up field, please, Gurus?
 
Give it a try
Code:
UPDATE tblEmpTransReq Inner Join tblEmployees On
      tblEmpTransReq.DB_id = tblEmployees.DB_id
SET tblEmpTransReq.TransferRequest = 
                [tblEmployees].[TransferRequest]
 
Spot on, Jerry. Many thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top