If I understand your probblem correctly, the code below should work. In the Detail OnFormat Event use
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FIELD_NAME.Value = 0 Then
FIELD_NAME.Visible = False
Else
End If
End Sub
Hope thats what you needed.