Update Query

  • Thread starter Thread starter Itzkie
  • Start date Start date
I

Itzkie

How do I fill in the boxes for the table I want to update in an update query?
I can easily fill in the fields for the table to get the data from..

Thanks
 
Here's one way where there is a single field updating another:

UPDATE Table3 SET [Degree] = [Measurement] & Chr(176);

And here's one that uses a Join to get data from 1 table (query) to update
another:

UPDATE tmpRptProcessed INNER JOIN qryCurrentYearProcessed ON
tmpRptProcessed.RecordID = qryCurrentYearProcessed.RecordID SET
tmpRptProcessed.JRDRevenue = [qryCurrentYearProcessed2].[JRDRevenue];
 

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

Similar Threads


Back
Top