Sandy,
The way I do it is this:
put a text box on the footer section with these properties:
control Name: txtCount
Control source: =Count(*)
Visible = No -
In the Section Footer's On Format event use:
Code:
Private Sub GroupFooter1_Format(Cancel As Integer, FormatCount As Integer)
Me.subtotal.Visible = (Me.txtcount > 1)
End Sub
or you could hide the footer section completely with this:
Code:
Private Sub GroupFooter1_Format(Cancel As Integer, FormatCount As Integer)
Me.GroupFooter1.Visible = (Me.txtcount > 1)
End Sub