View Full Version : Data replication


Rockape
10-19-2007, 12:43 AM
Hi all,

Is there a way of replicating text in a new field of an already established database. i.e. I have included a new field in a database and would like a short routine where i could include the same text in the same field for every record, without having to export it to excel , then including the text and then importing back to access?

Regards:confused:

RuralGuy
10-19-2007, 08:30 AM
An update query will do what you want if I understand you correctly.
UPDATE YourTable Set YourField = "The text you want"

Rockape
10-20-2007, 01:01 AM
Thanks,

The answer was simpler than expected. Tried to complicate the whole matter.

Thanks once again.;)

RuralGuy
10-20-2007, 01:55 AM
You're welcome. Glad I could help.