hi,
I have two tables, same heading. I need to update the records in one
depending the values on the other.I have an unique ID.
I can´t work it out.
Thanks
WHY!?
You're storing the same data redundantly in two identically structured
tables? That seems like a major violation of database principles.
If you do need to do it for some reason I don't understand, you would
create a query joining the two tables by ID; change the query to an
Update query; and on the Update To line under [Table1].[Field1] put
[Table2].[Field1]. The brackets are required (otherwise it will try
to update the field to the text string "Table2.Field1"). Of course you
need to use your own table and fieldnames, which you have chosen not
to share with us.
John W. Vinson[MVP]