T
TheWeave
I am trying to hide a grouping when a Text Box in that group has a value of
1. This is my code:
Private Sub Report_Open(Cancel As Integer)
If Me.Text88 = 1 Then
GroupFooter2.Visible = False
Else
GroupFooter2.Visible = True
End If
End Sub
Thanks for any help on this.
Ron
1. This is my code:
Private Sub Report_Open(Cancel As Integer)
If Me.Text88 = 1 Then
GroupFooter2.Visible = False
Else
GroupFooter2.Visible = True
End If
End Sub
Thanks for any help on this.
Ron