G
Guest
Greetings,
I have a very "novice" question in regards to reports. I am trying to hide
several labels on a report base upon choices on the data entry form. The
current code I have is below:
If Me.ChecHomeImp.Value = 1 Then
[rptSurveyResults].lblHomeImprovementLoans.Visible = True
Else
[rptSurveyResults].lblBuyingaVacationHome.Visible = False
End If
However, when I run this code I receive an error stating that it can't find
the field, "|" indicated in my expression. Am I not referencing the report
properly?
I have a very "novice" question in regards to reports. I am trying to hide
several labels on a report base upon choices on the data entry form. The
current code I have is below:
If Me.ChecHomeImp.Value = 1 Then
[rptSurveyResults].lblHomeImprovementLoans.Visible = True
Else
[rptSurveyResults].lblBuyingaVacationHome.Visible = False
End If
However, when I run this code I receive an error stating that it can't find
the field, "|" indicated in my expression. Am I not referencing the report
properly?