I have a report (in access 2007) that has labels on the bottom where certain people need to sign once the report is printed out. I am trying to figure out how to make it so that only the labels that have been checked for that record show (since not everyone will need to sign all the time). Right now the codes I have tried without success are:
Any advice/help is greatly appreciated.
&Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Reports![ReportGC]![Manufacturing] = True Then
Reports![ReportGC]![ProductionSuperintendent].Visible = True
Else
Reports![ReportGC]![ProductionSuperintendent].Visible = False
End If
End Sub
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.ProductionSuperintendent.Visible = Nz(Me.Manufacturing, 0)
Me.ProcessingSuperintendent.Visible = Nz(Me.Manufacturing, 0)
Me.Engnineering.Visible = Nz(Me.Engineering, 0)
Me.SafetySupervisor.Visible = Nz(Me.Safety, 0)
End Sub
Any advice/help is greatly appreciated.
Last edited by a moderator: