Maybe this have been upp before.
I am trying to hide a field in a report if anothe field is true.
I get value is missing by this code.
Test_ink is an yes/no
Anyone who se whats wrong?
I can use this in forms with success but not in reports.
Matt
I am trying to hide a field in a report if anothe field is true.
I get value is missing by this code.
Test_ink is an yes/no
Anyone who se whats wrong?
I can use this in forms with success but not in reports.
Matt
Code:
Private Sub Report_Open(Cancel As Integer)
If Me![test_ink] = True Then
Me![volume_ink].Visible = False
Else
Me![volume_ink].Visible = True
End If
End Sub