G
Guest
I have designed a summary report that shows average ratings respondents give
for seminar sessions. I have several subreports based on different queries
that give me a Respondents ID number, full name, and any verbatim comments
the respondent made. Clients and instructors now only want to see the
respondents ID number only if there is no name. I just started learning VB
so, I'm way out of my comfort zone here!
TextBox FullName's control source is =[RspFname]&" "&[RspLname]
RspID (PK) visible property is set to true
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FullName <> Null Then
RspID.Visible = False
Else
RspID.Visible = True
End If
End Sub
No ID or Name prints at all, just comments. Does DisplayWhen work for
controls or for the entire Detail section?
Thanks in advance for any help you can give.
for seminar sessions. I have several subreports based on different queries
that give me a Respondents ID number, full name, and any verbatim comments
the respondent made. Clients and instructors now only want to see the
respondents ID number only if there is no name. I just started learning VB
so, I'm way out of my comfort zone here!
TextBox FullName's control source is =[RspFname]&" "&[RspLname]
RspID (PK) visible property is set to true
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FullName <> Null Then
RspID.Visible = False
Else
RspID.Visible = True
End If
End Sub
No ID or Name prints at all, just comments. Does DisplayWhen work for
controls or for the entire Detail section?
Thanks in advance for any help you can give.