G
Guest
Main form - MREOBRequest
Subform - MREOBCompletion
I would like the after update of "MREOBCompletion subform.CompletedBy" to
set "MREOBRequest.Complete" to true if not null and false if null.
"MREOBRequest.Complete" is a checkbox. This is what I have come up with so
far, but access is telling me a reference is missing.
Private Sub CompletedBy_AfterUpdate(Cancel As Integer)
If Me!CompletedBy Is Not Null Then
Me.MREOBCompletion!Complete = True
Else
Me.MREOBCompletion!Complete = False
End If
End Sub
Subform - MREOBCompletion
I would like the after update of "MREOBCompletion subform.CompletedBy" to
set "MREOBRequest.Complete" to true if not null and false if null.
"MREOBRequest.Complete" is a checkbox. This is what I have come up with so
far, but access is telling me a reference is missing.
Private Sub CompletedBy_AfterUpdate(Cancel As Integer)
If Me!CompletedBy Is Not Null Then
Me.MREOBCompletion!Complete = True
Else
Me.MREOBCompletion!Complete = False
End If
End Sub