Your best bet would probably be using the NoData event.
For example, you could have a label that is dependent on if there is data or not.
such as:
Code:
Private Sub Report_NoData(Cancel As Integer)
LabelX.Caption = "No replies to this question"
End Sub
Or have that label's visibility be based on the NoData
Eg: have it as Visible=False, then for the NoData event, have
Code:
Private Sub Report_NoData(Cancel As Integer)
LabelX.Visible = True
End Sub
I am a loud man with a very large hat. This means I am in charge