ok, progress, I added a yes/no box to the Part table, based the continuous form on partT with and unbound combo based on componentID which is a sub field of PartT. short story I got a form with all my assets and a check box next to it but now when I run the insert code it only updates the first record it finds. insert and VBA for that matter are new to me so please look and show me how to grab all the records with the checkbox "update" checked, is there a way to loop it?
Code:
Private Sub btnupdate_Click()
On Error Resume Next
If update = True Then
Dim strsql As String
strsql = "INSERT INTO [comppartT]( [componentID], [partID] )"
strsql = strsql & "SELECT [copy of 8partT].[componentID], [copy of 8partT].[partID] "
DoCmd.SetWarnings False
DoCmd.RunSQL (strsql)
DoCmd.SetWarnings True
End If
End Sub