L
LAS
The detail section of my report is a sub report. In that sub report is a
control that I want to be invisible if a certain control on the main report
is empty. I think the code below should work, but I can't figure out where
to put it. I've tried the sub report's detail Print event and Format event.
Nothing else looks like a candidate. Can someone help?
tia
las
If Nz([Reports]![rptStudentScoresDataSheet]![txtPersonalGoal], "") <> ""
Then
txtPrinciple5.Visible = True
Else
txtPrinciple5.Visible = False
End If
control that I want to be invisible if a certain control on the main report
is empty. I think the code below should work, but I can't figure out where
to put it. I've tried the sub report's detail Print event and Format event.
Nothing else looks like a candidate. Can someone help?
tia
las
If Nz([Reports]![rptStudentScoresDataSheet]![txtPersonalGoal], "") <> ""
Then
txtPrinciple5.Visible = True
Else
txtPrinciple5.Visible = False
End If