I have a form where you input information for scheduling. I have a checkbox on this form that lets people in certain departments know that their material is here. I want to be able to update a text box on my report based on whether the check box in my form is checked.
Here is what I have:
Private Sub ckMatHere_Click()
If ckMatHere = -1 Then
Reports![5_MailRoom]!text74 = "X"
Else: Reports![5_MailRoom]!text74 = " "
End If
End Sub
Here is what I have:
Private Sub ckMatHere_Click()
If ckMatHere = -1 Then
Reports![5_MailRoom]!text74 = "X"
Else: Reports![5_MailRoom]!text74 = " "
End If
End Sub