I had previously posted a question about results from check boxes on reports. That worked fine. But I found out that I needed to use multiple check box results. Please see below;
If Advisory = True Then
Me.memberof.Value = "Advisory Board"
Else
Me.memberof.Value = " "
End If
Now this is in the ON Print of the Detail section of my report. My question is Advisory is not on this report but rather a field in the query. How do I include this field in the code above. The only time it worksed is when I placed this field on the report. But I can't have it on the report itself. I tried Advisory.Vaue=true but I getan 'Object not found error.'
I also need the code to basically say, if Advisory is true then end, if not true then else.
Please let me know if you need more clarification.
If Advisory = True Then
Me.memberof.Value = "Advisory Board"
Else
Me.memberof.Value = " "
End If
Now this is in the ON Print of the Detail section of my report. My question is Advisory is not on this report but rather a field in the query. How do I include this field in the code above. The only time it worksed is when I placed this field on the report. But I can't have it on the report itself. I tried Advisory.Vaue=true but I getan 'Object not found error.'
I also need the code to basically say, if Advisory is true then end, if not true then else.
Please let me know if you need more clarification.