I am trying to get my checkbox on my main form also to check the checkbox in the subform with the following code
but it is not working. Where am I going wrong?
Code:
Private Sub Archived_Click() If Me.Archived = True Then Me.subformTenantContacts.Archived = True End If End Sub
Comment