xanadude
Newbie - but learning fas
- Local time
- Today, 06:33
- Joined
- Feb 2, 2011
- Messages
- 65
Hi All
I have two tables that are formatted identically....
Table1 = MasterTable
Table2 = TempTable
I am taking a copy of one of the entry from the master table and Copying it to the temp table
I then open a form on the TempTable that enables the user to modify the content without affecting the information in the MasterTable.
On Completion and Save I wish to take this modified content and update the MasterTable Using the Field "ID"
the tables for example look like this
ID NAME AGE DATE1 DATE2
I am guessing I need to use a
Type of command but not to sure on the correct syntax and as everything is the same the use of wildcards for all fields
Thanks in advance
Roger
I have two tables that are formatted identically....
Table1 = MasterTable
Table2 = TempTable
I am taking a copy of one of the entry from the master table and Copying it to the temp table
I then open a form on the TempTable that enables the user to modify the content without affecting the information in the MasterTable.
On Completion and Save I wish to take this modified content and update the MasterTable Using the Field "ID"
the tables for example look like this
ID NAME AGE DATE1 DATE2
I am guessing I need to use a
Code:
DoCmd.RunSQL UPDATE "MasterTable" WHERE "TempTable"
Type of command but not to sure on the correct syntax and as everything is the same the use of wildcards for all fields
Thanks in advance
Roger