First of all and most important, make a back up - work with a copy of the
database just in case something goes kaflooey you have a go-back point!
It might be easier to simply rename the "Notes" field to "OldNotes" then add
the new field "Notes", no?
To do this with an update query you'll need to run 2 queries - one to copy
the data to "OldNotes" and one to clear "Notes"
Copy data:
UPDATE YourTable SET YourTable.OldNotes= [Notes];
Clear original Notes field:
UPDATE YourTable SET YourTable.Notes = Null;
On the first query don't forget the square brackets around the Notes field,
to denote this is a field and not text. On the second, do NOT use quotes, or
you will populate the field with the text Null, not a null value.
--
hth,
SusanV
Beamers said:
Hi Susan V,
Yes I tried to use the update query to move all the data from one field to
another field. My specific criteria didn't work. What should I enter?
Example: I want data in "Notes" field to move to "Old Notes" field in same
table for all records.
Thanks again for your quick response.