I want to update a table with the data of another. Is there some way to pull
data from one to the other. Each table has a common field. Where would I
start?
Back up your database first, just in case!
Create a Query joining the two tables on the common field. (It must
have a unique Index in the "one" side table for this to work, such as
a Primary Key).
Apply whatever criteria you need to limit the updates to those records
you actually want updated.
Change the query to an Update query using the query type icon or the
Query menu option.
On the Update To line under each field that you want to update, type
[OtherTableName].[FieldName]
using your own table and field names of course. The brackets are
essential, or it will update the table to "OtherTableName.FieldName"
rather than the contents of those fields!
Run the query by clicking the ! icon and check the results.
John W. Vinson[MVP]