Assuming your Check box is called chkSomething and the accompanying label is
lblSomething, in the Print event of the Section in which it appears, put the
following
Me.lblSomething.Visible = Me.chkSomething
Me.chkSomething.Visible = Me.chkSomething
That will set the visibility of both the Check Box and the Label to False if
the content is False, or True if the content is True.
Larry Linson
Microsoft Access MVP