I have a table (Current Meds) nested on my form that has a yes/no box (discontinue) clicked in every data entry. When i click on the yes/no box (discontinue) I want to copy all the data in that row and add it to a different nested table (tblNotesCurrentMeds) on that same form. I cant get it to work can anybody help my code so far.
Code:Private Sub Discontinue_AfterUpdate() If Discontinue = -1 Then Initial = DLookup("Initial", "Current Meds", "IDCurrentMeds = '" & [IDCurrentMeds] & "'") Else End If End Sub