Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating Fields in Tables 1

Status
Not open for further replies.

avaffa

Programmer
Jun 22, 2001
86
0
0
US
How can I replace the values in a field in Table1 with values from a field in Table2? Thanks!
 
Use an Update Query, link the two tables together using your index key or primary key and bring down the field from table1 that you want to replace. Under the Update To point it to the table and field where you want to pull data from. You can go a step further and add criteria such as Is Null, which will only replace blank fields.

David
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top