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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating information in two tables from one form

Status
Not open for further replies.

bkrampe

IS-IT--Management
Nov 30, 2006
77
US
I was wondering if someone could help me with a formula. I have a number field in one table that is linked to a form. I want when that field is updated i want it to change the information that is stored in another table. The form is linked to Table1 and i want it to update the number field in Table2 when its changed in the form. Let me know if you need anymore information. Thanks in advance
 
How are ya bkrampe . . .

The following code is based on the premise that [blue]the same Key value[/blue] (primary key or not) [blue]exist in both tables[/blue]. The code is executed from the [blue]Before Update[/blue] event of the form tied to table1:
Code:
[blue]   Dim db As DAO.Database, SQL As String
   Dim OldVal, NewVal
   
   Set db = CurrentDb
   OldVal = Me![purple][b][i]PrimaryKeyName[/i][/b][/purple].OldValue
   NewVal = Me![purple][b][i]PrimaryKeyName[/i][/b][/purple]
   SQL = "UPDATE [purple][b][i]YourTableName[/i][/b][/purple] " & _
         "Set [[purple][b][i]PrimaryKeyName[/i][/b][/purple]] = " & NewVal & " " & _
         "WHERE ([[purple][b][i]PrimaryKeyName[/i][/b][/purple]] = " & OldVal & ";"
   db.Execute SQL, dbFailOnError

   Set db = Nothing[/blue]


Calvin.gif
See Ya! . . . . . .

Be sure to see thread181-473997
Also faq181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top