how can I make a label (data text field.. or whatever it is!) visible only if its not = 1

tried
VB Code:
  1. Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
  2.     Debug.Print Me.Item_Count.Value
  3.     If Me.Item_Count.Value = 1 Then
  4.         Item_Count.Visible = False
  5.     End If
  6. End Sub

doesnt want to work...