I'm using this format to display subreport data in a group footer on my main report:
=IIf([subReportName].[Report].[HasData],[subReportName].[Report]![subReportTextboxNameName],0)
However, if the subreport has data (true), I need the sum of the subreport field. I tried adding sum before the...