Help with hidding report footer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I work in Access 97 and I have a subreport that I am trying to make it hidden
when certain conditions are met, here is the code:

If parent.[PricingDetails] = "General" Or Me![CredentialCount] = 1
Or Me![CredentialCount] < 1 Then
Me.ReportFooter.Visible = False
Else
Me.ReportFooter.Visible = True
End If
I placed this code in the report footer, detail, and header but nothing
seems to work even thogh the condition is met the footer still shows. any
ideas
thanks
Al
 
Back
Top