I have a report where I want to check a check box and if true I want a text box to show else make it invisible. Below is the code I have on the report On Current event however, it's not working. Would appreciate any suggestions.
check box = mocBill
text box = mocText
Private Sub Report_Current()
If Me.mocBill = Yes Then
Me.mocText.Visible = Yes
Else
Me.mocText.Visible = No
End If
End Sub
Basically if it's a mock bill I want to display a text box saying Mock Billing and if it's not then it will be blank.
Thanks in advance.
