A
Amelia
I have a checkbox that has this code:
Private Sub Check36_AfterUpdate()
If Me![Check36] = True Then
Me![Check Number].Visible = True
Else
Me![Check Number].Visible = False
End If
End Sub
It works perfectly except that when I check it, it makes the field check
number visible on all records. I only want it to show the field [check
number] on those records that have it checked true.
Any ideas or advice?
Private Sub Check36_AfterUpdate()
If Me![Check36] = True Then
Me![Check Number].Visible = True
Else
Me![Check Number].Visible = False
End If
End Sub
It works perfectly except that when I check it, it makes the field check
number visible on all records. I only want it to show the field [check
number] on those records that have it checked true.
Any ideas or advice?