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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top