How do you tell Visual Basic to set a subreport to Visible if the data is not Null? Example below works great for labels that are part of the main report:
Dim blnResolved as Boolean
blnResolved = Not IsNull(DateResolved)
DateResolvedLabel.Visible=blnResolved
HOWEVER, I’d like for it to also hide labels for the subreports that are null. How do I do that?
TIA