Why? It sounds like you already have the data. Use a query with a join to retrieve it rather than duplicating data across multiple tables (rarely a good idea).
Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
If this is something that has to be done on a weekly basis, it would be best to go with traingamers suggestion, that is, use a query that shows the data:
Code:
SELECT tblB.Date,
tblB.EmployeeNumber,
tblA.ProductionUnits,
tblB.HoursWorked,
tblB.Line
FROM tblB
INNER JOIN tblA
ON tblB.EmployeeNumber=tblA.EmployeeNumber
Or there abouts. If you really must change the data, you need an Update query, not an Append query.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.