Hi Martin,
You simply need to use an Update query to update the values in your new
field with the values from your existing field. Create a new query.
Dismiss
the Add Tables dialog without adding any tables. In query design view,
click
on View > SQL View. You should see the word SELECT highlighted. Copy the
following SQL statement (Ctrl C) and paste it into the SQL view (Ctrl V),
replacing the SELECT keyword:
UPDATE [TableName] SET [TableName].[abc1] = [abc];
where you substitute "TableName" with the actual name of your table.
You can then switch back to the more familiar design view, if you wish, by
clicking on View > Design View. Run the query.
Tom Wickerath
Microsoft Access MVP
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________
Martin (Martin Lee) said:
I have a field called [abc] in a table, with lots of data. Now, I want to
add another field called [abc1] in this table, and, to begin with this
new
field, I need to copy all the existed data in [abc] into [abc1]. How to
make this?
Thanks!
Martin Lee