Heres what I have so far, this is an event proceedure under "on format" of the page header of my report.<br><br><br>Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)<br>If Me!Exceptions Then<br>Me!PageHeader.Visible = True<br>Else<br>Me!PageHeader.Visible = False<br>End If<br>End Sub<br><br><br>I get an error saying "Microsoft access cant find the field "PageHeader" refered to in your expression"<br><br>Anyone know whats causing this?<br><br>BTW "Exceptions" is the yes/no field that if yes I want the page header visible, if no I dont want it visible