have a boolean field (checkbox) in my report detail section for a suspended car. I have this code in the on format section
If Me.Suspended = False Then
Me.CLeaseSuspensionStart.Visible = False
Me.CLeaseSuspensionEnd.Visible = False
Else
Me.CLeaseSuspensionStart.Visible = True
Me.CLeaseSuspensionEnd.Visible = True
End If
however, it still shows all the fields no matter. what. Does this kind of code work in a report?
Thanks