Hi Chaim thanks again for reply, still not working. Maybe I dont understand
the Update.
The Main table Has as I said earlier many field. ID and DOB (Date of Birth)
The Alternate table has ID, DOB.
The main table has many DOb filled in but in the alternate table there are
additional DOB's not in the main table. I want to update those that are
blank with the ones in the alternate.
First, BACK UP YOUR DATABASE! This process can destroy data if you do
it wrong!
Try creating a Query joining Table1 to Table2 by ID. Change it to an
Update query.
Put a Criterion on the criteria line under Maintable.DOB of
IS NULL
(unless you want to blindly overwrite all DOB's in the main table with
those from the related table).
Change the query to an Update query and put
[Alternate].[DOB]
on the Update To line (assuming that Alternate is in fact the name of
the second table).
Run the query by clicking the ! icon.
Now open the table and see if it's done the desired update.
John W. Vinson[MVP]