T
Telesphore
In a provisory report of students, some students whose "Final Mark" field
already contains the mention "EQV" should not appear.
This report is based on a query that contains the field "Final Mark", but in
the report only the names of students appear.
Student no.. 1
Student no.. 2
Student no.. 3
Etc.
Suppose that the student no. 2 already has an "EQV" note, it should not
appear in the report.
I suppose that the VBA code should look like this:
Private Sub Report_Activate()
If IsNull (Me.FinalMark) Then
Me. StudentName .Visible = False
Else
Me. StudentName.Visible = True
End if
End Sub
already contains the mention "EQV" should not appear.
This report is based on a query that contains the field "Final Mark", but in
the report only the names of students appear.
Student no.. 1
Student no.. 2
Student no.. 3
Etc.
Suppose that the student no. 2 already has an "EQV" note, it should not
appear in the report.
I suppose that the VBA code should look like this:
Private Sub Report_Activate()
If IsNull (Me.FinalMark) Then
Me. StudentName .Visible = False
Else
Me. StudentName.Visible = True
End if
End Sub