i'm trying to hide a group footer at the moment when a c ertain calculated value is zero.
but nothing is hidden even if value is 0 for the group
Any Ideas?
Code:
Private Sub Groupfooter2_Format(Cancel As Integer, FormatCount As Integer)
If Me!qtyYear = 0 Then
Me.Groupfooter2.visible = False
Else
Me.Groupfooter2.visible = True
End If
End Sub
Any Ideas?