Being new to Access 2007, I am Trying to solve a bigger report problem, so I start simple with a Detail On Format Event of:
The report detail is visable for all records! When this works I will build up to my desired filtering, but this simple event proceedure failes to suppress the detail area of my report. (I have set the report and page headers and footers to visible No on the property sheet, and that is working.) Thanks for pushing me past this puzzlement. -Al.
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Me.Detail.Visible = False End Sub
Comment