I have a form frm02a_Track_Log. The record source of the table is tbl01. I want to add text to a field for a specific record on the table from the form and when I move out of the text field I want tbl01 to update immediately and also update a table called tbl02_Main.
I have started a VBA function to immediatley update the source table, tbl01, but am unsure how to get the function to also update the second table with only the information for the specific record field.
Here is the code that I have so far:
Thank you in advance for any guidance or help!!
I have started a VBA function to immediatley update the source table, tbl01, but am unsure how to get the function to also update the second table with only the information for the specific record field.
Here is the code that I have so far:
Code:
Private Sub Problem_PA_Only_AfterUpdate()
On Error GoTo ErrHandler:
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_ErrHandler:
Exit Sub
ErrHandler:
MsgBox Err.Number & Err.Description
Resume Exit_ErrHandler
End Sub
Thank you in advance for any guidance or help!!